Row Condition with 2 conditions

Hello there -

Iโ€™m trying to do a row condition where with my mind, something like the following should work but doesnโ€™t
work

ISNOTBLANK([TARGET DATE]) ISBLANK([Date Completed]))

Any advice on what Iโ€™m doing wrong?

0 1 30
1 REPLY 1

Aurelien
Google Developer Expert
Google Developer Expert

Hi @Natt_Boarer
What about that ?

AND(
  ISNOTBLANK([TARGET DATE]),
  ISBLANK([Date Completed])
)

For reference:

Top Labels in this Space