Skip to main content
Skip table of contents

Operators

Overview

Operators are the basic building blocks used in formulas to combine values, compare results, and create conditions. They are often used directly (for example arithmetic) and inside functions (for example comparisons inside IF(...)).

Use this section to understand operator behavior and jump to the operator reference pages.

Operator precedence (quick rule)

  • Use parentheses to make intent explicit.

  • Without parentheses, * and / are evaluated before + and -.

  • Functions evaluate inside out, wrap intermediate steps if readability matters.

  • Shape rule of thumb: + and align to shared dimensions, while * and / apply across the combined dimension set.


Start here if…

What you’ll find in this section

  • Arithmetic operators: combine numeric values

    • Addition (+): sum values

    • Subtraction (-): subtract values

    • Multiplication (*): multiply values

    • Division (/): divide values

  • Comparisons & boolean logic: evaluate and combine conditions

    • Comparisons: equal =, not equal !=, greater >, greater than equal >=, less <, less than equal <=

    • Boolean logic: AND, NOT, OR, XOR, TRUE, FALSE

    • These are most commonly used inside IF(...) conditions.


Related sections

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.