I want to know what is the proper formula to use this…
IF(Checkincount= 99, TRUE(), FALSE())
I’d like to have an or option meaning
IF(Checkincount= 99, TRUE(), FALSE()), OR IF(Checkincount= 199, TRUE(), FALSE()), OR IF(Checkincount= 299, TRUE(), FALSE())
I can’t seem to find the right formula to use the OR
Meaning, I want it to show if Checkincount is 99 or 199 or 299 etc…
Hope that makes sense.
Thanks