.NOT. Logical NOT--unary (Logical) Syntax ! <lCondition> .NOT. <lCondition> Type Logical Operands <lCondition> is a logical expression to not. Description The not (!) operator is a unary logical operator that returns the logical inverse of <lCondition>. Examples . This example shows .NOT. results using different operands: ? ! (.T.) // Result: .F. ? ! 1 > 2 // Result: .T. ? .NOT. 1 > 2 // Result: .T.
See Also: .AND. .OR.