Axuda do Collabora Office 24.04
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.
Devolve VERDADEIRO se todos os argumentos sexan VERDADEIRO. Un dos elementos é FALSE, esta función devolve o valor FALSE.
Os argumentos son elas propias expresións lóxicas (VERDADEIRO, 1 <5, 2 + 3 = 7, B8 <10) que dáores lóxicos, ou matrices (A1: C3) contén valores lóxicos.
E(Logical 1 [; Logical 2 [; … [; Logical 255]]])
Os valores lóxicos de entrada 12 <13; 14> 12, e 7 <6 a seren verificados:
= E (12 <13; 14> 12; 7 <6) dá FALSE.
=AND(FALSE();TRUE()) returns FALSE.
Devolve o valor lóxico FALSO. A función FALSE () non require argumentos e sempre devolve o valor lóxico FALSO.
FALSE()
=FALSE() devolve FALSE
= NOT(falso()) devolve Verdadeiro
Complementos (inverte) un valor lóxico.
NON (Valorlóxico)
Valorlóxico é calquera valor a ser complementado.
= NOT (A) . Se A = VERDADEIRO entón NOT (A) pode avaliar FALSE.
Devolve VERDADEIRO se polo menos un argumento sexa VERDADEIRO. Esta función devolve o valor FALSE, se todos os argumentos teñen o valor lóxico FALSO.
Os argumentos son elas propias expresións lóxicas (VERDADEIRO, 1 <5, 2 + 3 = 7, B8 <10) que dán valores lóxicos, ou matrices (A1: C3) contén valores lóxicos.
OU(Logical 1 [; Logical 2 [; … [; Logical 255]]])
Os valores lóxicos de entrada 12 <11; 13> 22, e 45 = 45 están a ser verificado.
= OU (12 <11; 13> 22; 45 = 45) dá VERDADEIRO.
=OR(FALSE();TRUE()) returns TRUE.
Especifica unha proba lóxica para ser executada.
IF(Test [; [ThenValue] [; [OtherwiseValue]]])
Test é calquera valor ou expresión que pode ser VERDADEIRO ou FALSO.
DaquelaValor (opcional) é o valor que é devolto se a proba lóxica sexa VERDADEIRO.
SenónValor (opcional) é o valor que é devolto se a proba lóxica sexa FALSO.
Nas funcións de Collabora Office Calc, os parámetros marcados como «opcional» só poden omitirse cando non haxa ningún outro parámetro a seguir. Por exemplo, nunha función de catro parámetros, dos cales só os dous últimos aparecen marcados como «opcional», pódese omitir o parámetro 4 ou os parámetros 3 e 4, mais non é posíbel omitir exclusivamente o parámetro 3.
=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.
O valor lóxico defínese como VERDADEIRO. A función VERDADEIRO () non require argumentos e sempre devolve o valor lóxico VERDADEIRO.
VERDADEIRO()
Se A = B = VERDADEIRO e FALSE exemplos a seguir aparecen:
=E(A;B) devolve FALSO
=OU(A;B) devolve VERDADEIRO
= NOT(E(A;B)) devolve Verdadeiro
Devolve VERDADEIRO se un número impar de argumentos valorada como VERDADEIRO.
Os argumentos son elas propias expresións lóxicas (VERDADEIRO, 1 <5, 2 + 3 = 7, B8 <10) que retornan valores lóxicos, ou matrices (A1: C3) contén 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