Hoping someone can help me here.
I have three fields that all contain either yes or no in them.
I would like to create a forth calculated field that contains a Yes is any of the other three fields have a yes and a No if all three field contain No.
Is that possible please?
Any advice greatly appreciated.
Roger
Hi Roger,
Are those 3 fields checkmark fields? If so then you can do it like this:
IF (Check1 + Check2 + Check3 > 0, “YES”, “NO”)
The value of a Checkmark that’s selected will be 1. The value of a Checkmark that’s not selected will be 0.
So if any of the Checkmarks is on, you’ll at least get a 1 value and YES will be returned. The only other option is that all 3 are off so then you’ll get a NO returned.
Set the Result Type to Text for this to work.
I confirmed that this does work.
Thanks,
Brendan
Thanks for that. Works as I had wanted.