\<bookmark_value\>logical functions\</bookmark_value\>\<bookmark_value\>Function Wizard; logical\</bookmark_value\>\<bookmark_value\>functions; logical functions\</bookmark_value\>

Logical Functions

This category contains the Logical functions.

Handling non-logical arguments in logical functions

To access this command...

Insert - Function - Category Logical


\<bookmark_value\>AND function\</bookmark_value\>

AND

Returns TRUE if all arguments are TRUE. If one of the elements is FALSE, this function returns the FALSE value.

The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values.

Syntax

AND(Logical value 1; Logical value 2 ...Logical value 30)

LogicalValue1; LogicalValue2 ...LogicalValue30 are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses all values of the range. The result is TRUE if the logical value in all cells within the cell range is TRUE.

Example:

The logical values of entries 12<13; 14>12, and 7<6 are to be checked:

AND(12<13; 14>12; 7<6) returns FALSE.

AND (FALSE;TRUE) returns FALSE.

\<bookmark_value\>FALSE function\</bookmark_value\>

FALSE

Returns the logical value FALSE. The FALSE() function does not require any arguments, and always returns the logical value FALSE.

Syntax

FALSE()

Example:

FALSE() returns FALSE

NOT(FALSE()) returns TRUE

\<bookmark_value\>IF function\</bookmark_value\>

IF

Specifies a logical test to be performed.

Syntax

IF(Test; Then_value; Otherwise_value)

\<emph\>Test\</emph\> is any value or expression that can be TRUE or FALSE.

\<emph\>Then_value\</emph\> (optional) is the value that is returned if the logical test is TRUE.

\<emph\>Otherwise_value\</emph\> (optional) is the value that is returned if the logical test is FALSE.

In the LibreOffice Calc functions, parameters marked as "optional" can be left out only when no parameter follows. For example, in a function with four parameters, where the last two parameters are marked as "optional", you can leave out parameter 4 or parameters 3 and 4, but you cannot leave out parameter 3 alone.

Example:

IF(A1>5;100;"too small") If the value in A1 is higher than 5, the value 100 is entered in the current cell; otherwise, \<emph\>too small\</emph\> is entered in text format.

\<bookmark_value\>NOT function\</bookmark_value\>

NOT

Complements (inverts) a logical value.

Syntax

NOT(Logical value)

\<emph\>Logical Value\</emph\> is any value to be reversed.

Example:

NOT(A). A=TRUE reverses to A=FALSE.

\<bookmark_value\>OR function\</bookmark_value\>

OR

Returns TRUE if at least one argument is TRUE. This function returns the value FALSE, if all the arguments have the logical value FALSE.

The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values.

Syntax

OR(Logical value 1; Logical value 2 ...Logical value 30)

LogicalValue1; LogicalValue2 ...LogicalValue30 are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses all values of the range.

Example:

The logical values of entries 12<11; 13>22, and 45=45 are to be checked.

OR(12<11; 13>22; 45=45) returns TRUE.

OR(FALSE;TRUE) returns TRUE.

\<bookmark_value\>TRUE function\</bookmark_value\>

TRUE

The logical value is set to TRUE. The TRUE() function does not require any arguments, and always returns the logical value TRUE.

Syntax

TRUE()

Example:

If A=TRUE and B=FALSE the following examples appear:

=AND(A;B) returns FALSE

=OR(A;B) returns TRUE

=NOT(AND(A;B)) returns TRUE

\<bookmark_value\>OR function\</bookmark_value\>

XOR

Returns true if an odd number of arguments evaluates to TRUE.

The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values.

Syntax

OR(Logical value 1; Logical value 2 ...Logical value 30)

Example:

AND (FALSE;TRUE) returns FALSE.

OR(FALSE;TRUE) returns TRUE.

OR(FALSE;TRUE) returns TRUE.