Invert result of OR expression?

What is the best way to invert the result of an OR statement. It’s returning a false when I want a true.

Thank you

0 3 369
3 REPLIES 3

@SKETCHwade
You can use NOT() expression:

NOT(OR(true,false))

will return you FALSE

Ahh thank you!

@SKETCHwade
Additionally and likewise, below expression will eval to TRUE

NOT(OR(false,false))
Top Labels in this Space