Hi, I have the following formula that works by displaying a ! when col1 is empty:
IF({Col1} = BLANK(), “!”, “”)
However I would like to add OR statement so that the ! is displayed if either Col1, Col2 or Col3 have no entries.
I have tried varying di...