AND(ISBLANK([Delivered]),ISBLANK([Reason],ISNOTBLANK([Date])))
Error: ISBLANK function is used incorrectly
Expression works fine when I do not have the ISNOTBLANK([Date]) in it.
AND(ISBLANK([Delivered]),ISBLANK([Reason],ISNOTBLANK([Date])))
Error: ISBLANK function is used incorrectly
Expression works fine when I do not have the ISNOTBLANK([Date]) in it.
Your expression:
AND(ISBLANK([Delivered]),ISBLANK([Reason],ISNOTBLANK([Date])))
Probably what you want:
AND(ISBLANK([Delivered]),ISBLANK([Reason]),ISNOTBLANK([Date]))
Ahaa… missing bracket lol