I'm trying to set up a warning when a something is entered in the [Source] column of myTable, but the cell in the same row in the [Reference] column is left empty.
This works:
...but is there a better (more efficient) way (without VBA)?
This works:
Excel Formula:
=IF(
COUNTA(
FILTER(myTable[[Source]:[Reference]],(
(NOT(ISBLANK(myTable[Source])))*
(ISBLANK(myTable[Reference]))
)
)
)>0,
"Warning","")
...but is there a better (more efficient) way (without VBA)?