Boolean logic(布尔逻辑)¶
You can give a cell a Boolean value by entering =true or =false
You can also do basic Boolean operations in Fusion such as:
=if((A1 == 'x') OR NOT ('x' == 'y'), 'true', 'false')
Note that Fusion requires the use of single quotes ('), not double quotes (").
中文翻译¶
布尔逻辑¶
您可以通过输入 =true 或 =false 为单元格赋予布尔值(Boolean value)。
您还可以在 Fusion 中执行基本的布尔运算(Boolean operations),例如:
=if((A1 == 'x') OR NOT ('x' == 'y'), 'true', 'false')
请注意,Fusion 要求使用单引号('),而非双引号(")。