If a standard formula has two or more operators, the system performs the operations in the order of the operators' natural precedence.
The order of natural precedence to perform operations in an expression that has multiple operators is:
Unary minus (-# where # is any number)
Multiplication (*) and division (/)
Subtraction (- #) and addition (+ # where # is any number)
For example, if row 10 has a value of 8, the following expression produces a value of 20 for that column by calculating 3 * 4 + 8 = 20, following the order of natural precedence:
[10] + 3 * 4