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.
གལ་སྲིད་ཞུགས་གྲངས་ཡོད་ཚད་ནི་ TRUE ཕྱིར་ལོག་ TRUE གལ་སྲིད་ཞུགས་གྲངས་ཞིག་ FALSE ཡིན་ན་ རྟེན་གྲངས་ཕྱིར་ལོག་ FALSE
ཞུགས་གྲངས་ནི་གཏན་ཚིགས་ཐང་ཕྱིར་ལོག་བྱེད་ཐང་གི་གཏན་ཚིགས་མཚོན་ཚུལ་ཡིན་(TRUE, 1<5, 2+3=7, B8<10) ཡང་ན་གཏན་ཚིགས་ཐང་ཚུད་པའི་ལིང་ཚེ་ (A1:C3)ཡིན།
AND(Logical 1 [; Logical 2 [; … [; Logical 255]]])
བརྟག་དཔྱད་ 12<13; 14>12 དང་ 7<6 ཡི་གཏན་ཚིགས་ཐང་།
AND(12<13; 14>12; 7<6) འབྲས་བུ་ནི་ FALSE
=AND(FALSE();TRUE()) returns FALSE.
The array formula {=AND(B1:B10;C1:C10)} yields a one-dimensional value of TRUE when all components of B1:B10 and C1:C10 are TRUE. The array expression above does not produce the logical AND per element, and thus does not produce an array of logical values. To compute a logical AND of arrays per element use the * operator in array context. In the example, enter {=B1:B10*C1:C10}.
གཏན་ཚིགས་ཐང་ཕྱིར་ལོག་བྱེད་ FALSEརྟེན་གྲངས་ FALSE() ཞུགས་གྲངས་གང་ཡང་མི་དགོས་ འགོ་མཇུག་བར་གཏན་ཚིགས་ཐང་ཕྱིར་ལོག་བྱེད་ FALSE
FALSE()
འདི་ A=TRUE སྦྲགས་ B=FALSE སྐབས་གཤམ་གྱི་འབྲས་བུ་ཐོན་སྲིད།
=AND(A;B) ཕྱིར་ལོག་ FALSE
ལག་བསྟར་བྱེད་པའི་གཏན་ཚིགས་ཚོད་བགམ་གཏན་ཕབ་བྱེད།
IF(Test [; [ThenValue] [; [OtherwiseValue]]])
Test ནི་ TRUE ཡང་ན་ FALSE ཡི་ཐང་གང་རུང་ཞིག་དང་ཡང་ན་མཚོན་ཚུལ་ཡིན།
Then_value(འདེམས་རུང་)གཏན་ཚིགས་ཚོད་བགམ་འབྲས་བུ་ནི་ TRUE སྐབས་ཕྱིར་ལོག་པའི་ཐང་།
Otherwise_value(འདེམས་རུང་)གཏན་ཚིགས་ཚོད་བགམ་འབྲས་བུ་ནི་ FALSE སྐབས་ཕྱིར་ལོག་པའི་ཐང་།
In the LibreOfficeDev 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.
Complements (inverts) a logical value.
NOT(གཏན་ཚིགས་ཐང་)
LogicalValue is any value to be complemented.
=NOT(A). If A=TRUE then NOT(A) will evaluate FALSE.
ཞུགས་གྲངས་ཉུང་ཤོས་ལའང་ TRUEཡིན་སྐབས་ རྟེན་གྲངས་ཕྱིར་ལོག་ TRUEགལ་སྲིད་ཞུགས་གྲངས་ཡོད་ཚད་ནི་གཏན་ཚིགས་ཐང་ FALSEཡིན་ན་རྟེན་གྲངས་ཕྱིར་ལོག་ FALSEབྱེད།
ཞུགས་གྲངས་ནི་གཏན་ཚིགས་ཐང་ཕྱིར་ལོག་བྱེད་ཐང་གི་གཏན་ཚིགས་མཚོན་ཚུལ་ཡིན་(TRUE, 1<5, 2+3=7, B8<10) ཡང་ན་གཏན་ཚིགས་ཐང་ཚུད་པའི་ལིང་ཚེ་ (A1:C3)ཡིན།
OR(Logical 1 [; Logical 2 [; … [; Logical 255]]])
བརྟག་དཔྱད་ 12<11; 13>22 དང་དེ་བཞིན་ 45=45 ཡི་གཏན་ཚིགས་ཐང་བརྟག་དཔྱད་བྱེད།
OR(12<11; 13>22; 45=45) ཡི་འབྲས་བུ་ནི་ TRUE
=OR(FALSE();TRUE()) returns TRUE.
The array formula {=OR(B1:B10;C1:C10)} yields a one-dimensional value of FALSE when all components of B1:B10 and C1:C10 are FALSE. The array expression above does not produce the logical OR per element, and thus does not produce an array of logical values. To compute a logical OR of arrays per element use the + operator in array context. In the example, enter {=B1:B10+C1:C10}.
གཏན་ཚིགས་ཐང་ TRUEབཀོད་སྒྲིག་བྱེད། རྟེན་གྲངས་ TRUE() ཞུགས་གྲངས་གང་ཡང་མི་དགོས་ འགོ་འཛུགས་བར་གཏན་ཚིགས་ཐང་ཕྱིར་ལོག་བྱེད་ TRUE
TRUE()
འདི་ A=TRUE སྦྲགས་ B=FALSE སྐབས་ གཤམ་གྱིས་འབྲས་བུ་ཐོན།
=AND(A;B) འབྲས་བུ་ནི་ FALSE
=OR(A;B) ཕྱིར་ལོག་ TRUE
=NOT(AND(A;B)) ཕྱིར་ལོག་ TRUE
Returns true if an odd number of arguments evaluates to TRUE.
ཞུགས་གྲངས་ནི་གཏན་ཚིགས་ཐང་ཕྱིར་ལོག་བྱེད་ཐང་གི་གཏན་ཚིགས་མཚོན་ཚུལ་ཡིན་(TRUE, 1<5, 2+3=7, B8<10) ཡང་ན་གཏན་ཚིགས་ཐང་ཚུད་པའི་ལིང་ཚེ་ (A1:C3)ཡིན།
XOR(Logical 1 [; Logical 2 [; … [; Logical 255]]])
=XOR(TRUE();TRUE()) returns FALSE
=XOR(TRUE();TRUE();TRUE()) returns TRUE
=XOR(FALSE();TRUE()) returns TRUE