| Applying science to business management |
  
Logical Not
Format: ! x
Arguments: (bool) x Any Boolean expression
Returns: (bool) True if x is false
(numerically equal to zero), false otherwise
Examples: !true = false
!false = true
!12 = false
!0 = true
IF(!x,y,z) = y if x is false
otherwise z
See Also: Factorial,
Logical And, Logical Or, true, false
|