The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
Mar 16, 2021 03:42 AM
Hi
I have two fields that I am trying to use an IF AND statement on
One is a date field {Rollout Date} and one is a checkbox {BU Code Updated}
I want to write a statement that returns an “error” message when the date is before today’s date and the checkbox is {BU Code Updated} checkbox is unchecked - nothing needs to be returned if the date is after today and the checkbox is unchecked
Solved! Go to Solution.
Mar 16, 2021 04:03 AM
This should work: IF(AND(IS_BEFORE({Rollout Date}, TODAY()), NOT({BU Code Updated})), ERROR("Your error here"))
Mar 16, 2021 04:03 AM
This should work: IF(AND(IS_BEFORE({Rollout Date}, TODAY()), NOT({BU Code Updated})), ERROR("Your error here"))
Mar 16, 2021 05:09 AM
Thanks. worked perfectly