LibreOffice Calc 中的运算符

您可以在 LibreOffice Calc 中使用以下运算符:

算术运算符

这些运算符返回数字结果。

运算符

名称

Example

+ (加号)

加法

1+1

- (减号)

减法

2-1

- (减号)

-5

* (星号)

乘法

2*2

/ (斜线)

除法

9/3

% (百分号)

百分比

15%

^ (脱字符)

乘方

3^2


note

Prefix "-" (negation) has a higher precedence than "^" (exponentiation). For example -3^2 equals 9, which is the square of a negative number.


比较运算符

这些运算符返回逻辑值 TRUE 或 FALSE。

运算符

名称

Example

= (等号)

等于

A1=B1

> (大于号)

大于

A1>B1

< (小于号)

小于

A1<B1

>= (大于或等于)

大于或等于

A1>=B1

<= (小于或等于)

小于或等于

A1<=B1

<> (不等于)

不等于

A1<>B1


文字运算符

该运算符把各文本合并到一个文本中。

运算符

名称

Example

& (和)

文本连接 AND

"Sun" & "day"得出"Sunday"


引用运算符

这些运算符返回 0、1 或更多个单元格区域。

区域具有最高优先级,然后是交集,最后是并集。

运算符

名称

Example

: (冒号)

区域

A1:C108, A:D or 3:13

! (感叹号)

交集

SUM(A1:B6!B5:C12)

计算交集中所有单元格的和。此例中,计算单元格 B5 和 B6 的和。

~ (颚化符)

连接或并集

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.


note

A reference list is not allowed inside an array expression.