LibreOffice 25.2 Help
LibreOffice གློག་རྡུལ་རེའུ་མིག་ནང་གཤམ་གྱི་རྩིས་རྒྱག་རྟགས་ཁག་མཁོ་འདོན་བྱེད་ཆོག་:
རྩིས་རྒྱག་རྟགས་འདི་དག་གིས་གྲངས་ཀའི་འབྲས་བུ་རྩིས་རྒྱག
| རྩིས་རྒྱག་རྟགས། | མིང་། | དཔེ་གཞི། | 
|---|---|---|
| + | བསྡོམས་རྟགས། | 1+1 | 
| - | འཐེན་ཐབས། | 2-1 | 
| - | མིན་པ། | -5 | 
| * | སྒྱུར་ཐབས། | 2*2 | 
| / | བགོས་ཐབས། | 9/3 | 
| % | བརྒྱ་ཆའི་སྡུར་བ། | 15% | 
| ^ | རང་སྒྱུར་རྩིས། | 3^2 | 
Prefix "-" (negation) has a higher precedence than "^" (exponentiation). For example -3^2 equals 9, which is the square of a negative number.
རྩིས་རྒྱག་རྟགས་འདི་དག་གིས་གཏན་ཚིགས་ TRUE དང་ FALSEཕྱིར་ལོག་བྱེད།
| རྩིས་རྒྱག་རྟགས། | མིང་། | དཔེ་གཞི། | 
|---|---|---|
| = | མཚུངས་རྟགས། | A1=B1 | 
| > | ལས་ཆེ་བ། | A1>B1 | 
| < | ལས་ཆུང་བ། | A1<B1 | 
| >= | ལས་ཆེ་བའམ་མཚུངས་པ། | A1>=B1 | 
| <= | ལས་ཆུང་བའམ་མཚུངས་པ། | A1<=B1 | 
| <> | མི་མཚུངས་པ། | A1<>B1 | 
རྩིས་རྒྱག་རྟགས་འདིས་ཡིག་དེབ་ཁག་ཡིག་དེབ་གཅིག་ནང་ཟླ་སྒྲིལ་བྱེད།
| རྩིས་རྒྱག་རྟགས། | མིང་། | དཔེ་གཞི། | 
|---|---|---|
| & | text concatenation | "Sun" & "day"ལས་"Sunday"ཐོབ་པ། | 
རྩིས་རྒྱག་རྟགས་འདི་དག་ཟླ་སྒྲིལ་དྲ་མིག་ས་ཁོངས་ལ་སྤྱོད།
Range has the highest precedence, then intersection, and then finally union.
| རྩིས་རྒྱག་རྟགས། | མིང་། | དཔེ་གཞི། | 
|---|---|---|
| : | ས་ཁོངས། | A1:C108, A:D or 3:13 | 
| ! | སྡེབ་འདུས། | SUM(A1:B6!B5:C12) སྡེབ་འདུས་ནང་དྲ་མིག་ཡོད་ཚད་ཀྱི་སྡོམས་རྩིས་རྒྱག་དགོས། དཔེ་འདིའི་ནང་དྲ་མིག་ B5 དང་ B6 གི་སྡོམས་རྩིས་རྒྱོབ། | 
| ~ | Concatenation or union | Takes two references and returns a reference list, which is a concatenation of the left reference followed by the right reference. Double entries are referenced twice. =COUNT(A1:B2~B2:C3) counts values of A1:B2 and B2:C3. Note that the cell B2 is counted twice. =INDEX(A1:B2~C1:D2;2;1;2) selects cell C2, that is, the first cell of the second row, first column, of the second range (C1:D2) of the range list. | 
A reference list is not allowed inside an array expression.
Associativity and precedence of operators, from highest to lowest precedence.
| Associativity | Operator(s) | ནང་དོན། | 
|---|---|---|
| གཡོན་ཕྱོགས། | : | Range. | 
| གཡོན་ཕྱོགས། | ! | Reference intersection (A1:C4!B1:B5 is B1:B4). | 
| གཡོན་ཕྱོགས། | ~ | Reference union. | 
| གཡས་ཕྱོགས། | +,- | Prefix unary operators. For example, -5 or -A1. Note that these have a different precedence than add and subtract. | 
| གཡོན་ཕྱོགས། | % | Postfix unary operator % (divide by 100). Note that this is legal with expressions, for example, B1%. | 
| གཡོན་ཕྱོགས། | ^ | Power (2^3 is 8). | 
| གཡོན་ཕྱོགས། | *,/ | Multiply, divide. | 
| གཡོན་ཕྱོགས། | +,- | Binary operations add, subtract. Note that unary (prefix) + and - have a different precedence. | 
| གཡོན་ཕྱོགས། | & | Binary operation string concatenation. Note that "&" shall be escaped when included in an XML document. | 
| གཡོན་ཕྱོགས། | =, <>, <, <=, | Comparison operators equal to, not equal to, less than, less than or equal to, greater than, greater than or equal to. | 
Prefix "-" has a higher precedence than "^", "^" is left-associative, and reference intersection has a higher precedence than reference union.
Prefix "+" and "-" are defined to be right-associative. However, note that typical applications which implement at most the operators defined in this specification (as specified) may implement them as left-associative, because the calculated results will be identical.
Precedence can be overridden by using parentheses, so "=2+3*4" computes to 14 but "=(2+3)*4" computes 20.