Help

Re: IF & AND statement on two fields, date and checkbox

Solved
Jump to Solution
370 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Douglas_Roberts
4 - Data Explorer
4 - Data Explorer

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

1 Solution

Accepted Solutions
Raminder_Singh
7 - App Architect
7 - App Architect

This should work: IF(AND(IS_BEFORE({Rollout Date}, TODAY()), NOT({BU Code Updated})), ERROR("Your error here"))

See Solution in Thread

2 Replies 2
Raminder_Singh
7 - App Architect
7 - App Architect

This should work: IF(AND(IS_BEFORE({Rollout Date}, TODAY()), NOT({BU Code Updated})), ERROR("Your error here"))

Thanks. worked perfectly