and
($values as xs:anyAtomicType*) as xs:boolean
Returns TRUE if all its arguments are TRUE; FALSE if one or more arguments are FALSE. |
and
($arg1 as xs:anyAtomicType, $arg2 as xs:anyAtomicType) as xs:boolean
Returns TRUE if all its arguments are TRUE; FALSE if one or more arguments are FALSE. |
if
($logical_test as xs:boolean, $value_if_true as item()*, $value_if_false as item()*) as item()*
Returns one value if a condition you specify evaluates to TRUE and another value if it evaluates to FALSE. |
or
($values as xs:anyAtomicType*) as xs:boolean
Returns TRUE if any argument is TRUE; FALSE if all arguments are FALSE. |
or
($arg1 as xs:anyAtomicType, $arg2 as xs:anyAtomicType) as xs:boolean
Returns TRUE if any argument is TRUE; FALSE if all arguments are FALSE. |
declare function excel-logical:and($values as xs:anyAtomicType*) as xs:boolean
declare function excel-logical:and($arg1 as xs:anyAtomicType, $arg2 as xs:anyAtomicType) as xs:boolean
declare function excel-logical:if($logical_test as xs:boolean, $value_if_true as item()*, $value_if_false as item()*) as item()*
declare function excel-logical:or($values as xs:anyAtomicType*) as xs:boolean
declare function excel-logical:or($arg1 as xs:anyAtomicType, $arg2 as xs:anyAtomicType) as xs:boolean