Reputation: 1
How would I create a custom formula in Google Sheets which would do the following:
If Column A, B, & C contains a date then change column X to YES
Upvotes: 0
Views: 48
Reputation: 1
=ARRAYFORMULA(IF((IFERROR(DATEVALUE(A:A)))*
(IFERROR(DATEVALUE(B:B)))*
(IFERROR(DATEVALUE(C:C))), "YES", ))
Upvotes: 1