Funciones lóxiques

This category contains the Logical functions.

Handling non-logical arguments in logical functions

P'aportar a esta orde...

Insert - Function - Category Logical


ESNOD

Devuelve VERDADERU si una caxella contién el valor de fallu #N/A (valor non disponible).

Si un fallu asocede, la función devuelve FALSU.

Sintaxis

ESNOD(Valor)

Valor ye'l valor o una espresión que tien de comprobase.

Exemplu

=ESNOD(D3) devuelve FALSU como resultáu.

ESERROR

Returns the value if the cell does not contain an error value, or the alternative value if it does.

tip

Esta función ta disponible dende la versión 4.0 de LibreOffice.


Sintaxis

IFERROR(Value; Alternate_value)

Value is the value or expression to be returned if it is not equal or results in an error.

Alternate_value is the value or expression to be returned if the expression or value of Value is equal or results in an error.

Exemplu

=ESERROR(C8) onde caxella C8 contién =1/0 devuelve VERDADERU, porque 1/0 ye un fallu.

=ESERROR(C8) onde caxella C8 contién =1/0 devuelve VERDADERU, porque 1/0 ye un fallu.

IFS

IFS is a multiple IF-function.

SWITCH

SWITCH compares expression with value1 to valuen and returns the result belonging to the first value that equals expression. If there is no match and default_result is given, that will be returned.

FALSU

Devuelve'l valor lóxicu FALSU. La función FALSU() nun riquir nengún argumentu, y siempres devuelve'l valor lóxicu FALSU.

Sintaxis

FALSU()

Exemplu

=FALSU() devuelve FALSU

=NON(FALSU()) devuelve VERDADERU

NON

Complementa (invierti) un valor lóxicu.

Sintaxis

NON(ValorLógico)

ValorLógico ye cualquier valor que se deba complementar.

Exemplu

=NON(A). Si A=VERDADERU, entós NON(A) va evaluar FALSU.

O

Devuelve VERDADERU si siquier unu de los argumentos ye VERDADERU. Esta función devuelve'l valor FALSU si tolos argumentos tienen el valor lóxicu FALSU.

Los argumentos son espresiones lóxiques (VERDADERU, 1<5, 2+3=7, B8<10) que devuelven valores lóxicos, o matrices (A1:C3) que contienen valores lóxicos.

Sintaxis

OR(Logical 1 [; Logical 2 [; … [; Logical 255]]])

Logical 1, Logical 2, … , Logical 255 are boolean values, references to cells or to cell ranges of logical values.

note

This function ignores any text or empty cell within a data range. If you suspect wrong results from this function, look for text in the data ranges. To highlight text contents in a data range, use the value highlighting feature.


Exemplu

Tienen de comprobase los valores lóxicos de les entraes 12<11; 13>22 y 45=45.

=O(12<11;13>22;45=45) devuelve VERDADERU.

=OR(FALSE();TRUE()) returns TRUE.

SI

Especifica una prueba lóxica que tien de llevase a cabu.

Sintaxis

IF(Test [; [ThenValue] [; [OtherwiseValue]]])

Prueba ye cualquier valor o espresión que pueda ser VERDADERU o FALSU.

ValorSiVerdadero (opcional) ye'l valor que se devuelve si la prueba lóxica da como resultancia VERDADERA.

SiNoValor (opcional) ye'l valor que se devuelve si la prueba lóxica ye FALSU.

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.

Exemplu

=IF(A1>5;100;"too small") If the value in A1 is greater than 5, the value 100 is returned; otherwise, the text too small is returned.

=IF(A1>5;;"too small") If the value in A1 is greater than 5, the value 0 is returned because empty parameters are considered to be 0; otherwise, the text too small is returned.

=IF(A1>5;100;) If the value in A1 is less than 5, the value 0 is returned because the empty OtherwiseValue is interpreted as 0; otherwise 100 is returned.

VERDADERU

El valor lóxicu configúrase como VERDADERU. La función VERDADERU() nun riquir nengún argumentu, y siempres devuelve'l valor lóxicu VERDADERU.

Sintaxis

VERDADERU()

Exemplu

Si A=VERDADERU y B=FALSU, van apaecer los exemplos siguientes:

=Y(A;B) devuelve FALSU

=O(A;B) devuelve VERDADERU

=NON(Y(A;B)) devuelve VERDADERU.

XOR

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

Los argumentos son espresiones lóxiques (VERDADERU, 1<5, 2+3=7, B8<10) que devuelven valores lóxicos, o matrices (A1:C3) que contienen valores lóxicos.

tip

Esta función ta disponible dende la versión 4.0 de LibreOffice.


Sintaxis

XOR(Logical 1 [; Logical 2 [; … [; Logical 255]]])

Logical 1, Logical 2, … , Logical 255 are boolean values, references to cells or to cell ranges of logical values.

Exemplu

=XOR(TRUE();TRUE()) returns FALSE

=XOR(TRUE();TRUE();TRUE()) returns TRUE

=XOR(FALSE();TRUE()) returns TRUE

Y

Devuelve VERDADERU si tolos argumentos son VERDADEROS. Si unu de los elementos ye FALSU, esta función devuelve'l valor FALSU.

Los argumentos son espresiones lóxiques (VERDADERU, 1<5, 2+3=7, B8<10) que devuelven valores lóxicos, o matrices (A1:C3) que contienen valores lóxicos.

Sintaxis

AND(Logical 1 [; Logical 2 [; … [; Logical 255]]])

Logical 1, Logical 2, … , Logical 255 are boolean values, references to cells or to cell ranges of logical values.

note

This function ignores any text or empty cell within a data range. If you suspect wrong results from this function, look for text in the data ranges. To highlight text contents in a data range, use the value highlighting feature.


Exemplu

Tienen de comprobase los valores lóxicos de les entraes 12<13; 14>12 y 7<6:

=Y(12<13;14>12;7<6) devuelve FALSU.

=AND(FALSE();TRUE()) returns FALSE.

Please support us!