Posljednja promjena  24.07.2005

      BACK

     

Logical Function

 
Name Source Type Description Syntax
AND Built In Logical Returns TRUE if all its arguments are TRUE  =AND(Logical1,Logical2,…)
IF Built In Logical Returns one value specified condition evaluates to TRUE and another value if it evaluates to FALSE  =IF(logical_test,value_if_true,value_if_false)
NOT Built In Logical Reverses the logic of its argument  =NOT(Logical)
OR Built In Logical ReturnsTRUE if any argument is TRUE  =OR(logical1,logical2,…)
FALSE Built In Logical Returns the logical value FALSE

 =FALSE()

TRUE Built In Logical Returns the logical value TRUE  =TRUE()