Logische functies

<< Click to Display Table of Contents >>

Navigation:  Macro's > Macro: commando's en parameters > Macro: functies >

Logische functies

Functie

Doel

Voorbeeld

Resultaat

AND

AND-functie van 2 booleans (boolean)

Text( AND( TRUE,FALSE ) )

FALSE

OR

OR-functie van 2 booleans (boolean)

Text( OR( TRUE,FALSE ) )

TRUE

XOR

XOR-functie van 2 booleans (boolean)

Text( XOR( TRUE,TRUE ) )

FALSE

NOT

NOT-functie

Text( NOT( TRUE ) )

FALSE

LT

kleiner dan

Text( LT( 2,3 ) )

TRUE

LE

kleiner dan of gelijk aan

Text( LE( 3,3 ) )

TRUE

GT

groter dan

Text( GT( 3,3 ) )

FALSE

GE

groter dan of gelijk aan

Text( GE( 3,3 ) )

TRUE

EQ

gelijk aan

Text( EQ( 2,3 ) )

FALSE

NE

niet gelijk aan

Text( NE( 2,3 ) )

TRUE