Hello all,
I need help writing a formula that looks at a date field (which may have multiple entries) to see if it contains any dates within a set range. For example: if the "Date" field contains any dates earlier than May 5, 2022, return "1", otherwise, return "0".
Here's where I'm at...
=IF(CONTAINS(Date@row < DATE(2022, 05, 05))), 1, 0
Thanks in advance!
Mary