| ABS | Displays the absolute value of a number or formula regardless of whether it is positive or negative |
| AND(x,y) | Displays the logical AND for two arguments. |
| AVERAGE() | Displays the arithmetic mean of a list of numbers seperated by commas and placed in parentheses. |
| COUNT() | Displays the total number of items in a list seperated by commas and placed in parentheses. |
| DEFINED(x) | Displays the number 1 if the expression "x" is valid and the number 0 if the expression "x" is not valid. |
| FALSE | Displays the number 0 |
| IF(x,y,z) | |
| INT(x) | Displays the whole numbers from the result of expression "x". Any decimal places are ignored. |
| MIN() | |
| MAX() | |
| MOD(x,y) | |
| NOT(x) | Displays the number 0 if expression "x" evaluates to true and the number 1 if expression "y" evaluates to false. |
| OR(x,y) | Displays the logical OR for two arguments. |
| PRODUCT(x,y) | Displays the result of multiplying the result of expression "x" with the result of expression "y". |
| ROUND(x,y) | Displays the result of expression "x" rounded to "y" number of decimal places. |
| SIGN(x) | Displays the number 1 if "x" is positive and the number 0 if "x" is negative. |
| SUM | Displays the total value of a list of numbers seperated by commas and placed in parentheses. |
| TRUE | Displays the number 1 |