> For the complete documentation index, see [llms.txt](https://help.workdigital.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.workdigital.io/custom-database-apps/formula-functions/aggregate-functions.md).

# 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                                 |
