# Aggregate Functions

| Name | Category            | Arguments | Result | Description                                        | Example                                                      |
| ---- | ------------------- | --------- | ------ | -------------------------------------------------- | ------------------------------------------------------------ |
| Sum  | Aggregate Functions |           | NUMBER | Returns the sum of all the arguments.              | Sum(2, 5, 3, 10) will 20 Sum(2.2, 2.5, 7.4) will return 12.1 |
| Min  | Aggregate Functions |           | NUMBER | Returns the minimum number from all the arguments. | Min(10, 7, 199, 18) will 7                                   |
| Max  | Aggregate Functions |           | NUMBER | Returns the maximum number from all the arguments. | Max(10, 7, 199, 18) will 199                                 |
