Ayuda de LibreOffice 24.8
This category contains the Logical functions.
Zero (0) is equivalent to FALSE and all other numbers are equivalent to TRUE.
Empty cells and text in cells are ignored.
A #VALUE error is raised if all arguments are ignored.
A #VALUE error is raised if one argument is direct text (not text in a cell).
Errors as argument lead to an error.
Devuelve'l valor lóxicu FALSU. La función FALSU() nun riquir nengún argumentu, y siempres devuelve'l valor lóxicu FALSU.
FALSU()
=FALSU() devuelve FALSU
=NON(FALSU()) devuelve VERDADERU
Complementa (invierti) un valor lóxicu.
NON(ValorLógico)
ValorLógico ye cualquier valor que se deba complementar.
=NON(A). Si A=VERDADERU, entós NON(A) va evaluar FALSU.
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.
OR(Logical 1 [; Logical 2 [; … [; Logical 255]]])
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.
Especifica una prueba lóxica que tien de llevase a cabu.
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.
=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.
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.
VERDADERU()
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.
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.
XOR(Logical 1 [; Logical 2 [; … [; Logical 255]]])
=XOR(TRUE();TRUE()) returns FALSE
=XOR(TRUE();TRUE();TRUE()) returns TRUE
=XOR(FALSE();TRUE()) returns TRUE
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.
AND(Logical 1 [; Logical 2 [; … [; Logical 255]]])
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.