| COUNT | Counts the total number of data records submitted for a specified form. |
| ADD | Calculates the sum of multiple field values. |
| AVERAGE | Returns the arithmetic mean of a set of Numerical values. |
| MAX | Returns the maximum value in a set of numbers. |
| MIN | Returns the minimum value in a set of numbers. |
| ABS | Returns the absolute value of a number when it is negative. |
| ROUND | Rounds a number to the specified number of decimal places. |
| CEILING | Rounds the parameter number up (away from zero) to the nearest multiple of the specified base. |
| FLOOR | Rounds the parameter number down (toward zero) to the nearest multiple of significance. |
| INT | Rounds a number down to the nearest integer. |
| LOG | Returns the logarithm of a number to the specified base. |
| MOD | Returns the remainder from dividing two Numerical components. |
| POWER | Calculates the result of a Numerical component raised to a power. |
| FIXED | Rounds a number to the specified number of decimal places, formats it in decimal notation, and returns the result as a number. |
| SQRT | Returns the positive square root of a Numerical component value. |
| SUM | Adds all numbers passed as parameters and returns their sum. |
| PRODUCT | Returns a result of the double-precision float type. |
| SUMPRODUCT | Multiplies corresponding elements in the given arrays and returns the sum of those products. |
| LARGE | Returns the k-th largest value in a data set. |
| SMALL | Returns the k-th smallest value in a data set. |