Logical functions

<< Click to Display Table of Contents >>

Navigation:  Macros > Macro commands and parameters > Macro functions >

Logical functions

Function

Purpose

Example

Result

AND

AND-function of 2 booleans (boolean)

Text( AND( TRUE,FALSE ) )

FALSE

OR

OR-function of 2 booleans (boolean)

Text( OR( TRUE,FALSE ) )

TRUE

XOR

XOR-function of 2 booleans (boolean)

Text( XOR( TRUE,TRUE ) )

FALSE

NOT

NOT-function

Text( NOT( TRUE ) )

FALSE

LT

less than

Text( LT( 2,3 ) )

TRUE

LE

less than or equal

Text( LE( 3,3 ) )

TRUE

GT

larger than

Text( GT( 3,3 ) )

FALSE

GE

larger than or equal

Text( GE( 3,3 ) )

TRUE

EQ

equal

Text( EQ( 2,3 ) )

FALSE

NE

not equal

Text( NE( 2,3 ) )

TRUE