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) returns 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()
=FALSE() returns FALSE
=NOT(FALSE()) returns TRUE
ལཱ་འགན་འགྲུབ་ནི་ཨིན་པའི་ བརྟག་ཞིབ་གཏན་ཚིག་ཅན་ཅིག་གསལ་བཀོད་འབདཝ་ཨིན།
IF(Test [; [ThenValue] [; [OtherwiseValue]]])
བརྟག་ཞིབ་ འདི་ 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) returns 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) returns FALSE
=OR(A;B) returns TRUE
=NOT(AND(A;B)) returns 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