Logically NOT is a boolean. This will return true
if the conditions are false, and false
if the conditions are true. Passing a null value will return null
.
bool? NOT(bool? condition)
NOT(COMPARE("Apples", "Oranges"))
Will return true
, as the COMPARE returns false
.