Applications and Applets
...
Calculation Builder
Logic
4 min
and description returns true if all conditions are true it returns false if any of the conditions are false example and(logical1, logical2, ) false description returns a logical value of false example false(stringvalue) if description returns one value if a specified condition evaluates to true, or another value if it evaluates to false example if(logical test, value if true, value if false) not description this function returns the reversed logical value example not(logical) or description returns true if any of the conditions are true otherwise, it returns false example or(logical1, logical2, ) true description function returns a logical value of true example true(stringvalue) xor description returns the exclusive or for the given arguments example xor(logical value1, logical value2, )