0

I'm writing a database from a questionnaire, and I need certain cells to show a warning when another cell is blank and when is not certain values (like a drop-down list), how can I do that?

I'm actually using =not(isblank($AU2)) for the blank part, but now I need the drop-down list or something like that

player0
  • 124,011
  • 12
  • 67
  • 124

1 Answers1

0

custom formula would be:

=(A2=1)*(REGEXMATCH(TO_TEXT(B2), "^"&TEXTJOIN("$|^", 1, INDIRECT("Lists!B2:B")&"$")))

0

player0
  • 124,011
  • 12
  • 67
  • 124