Statistic Functions
Mappings: Functions and Expressions · Updated June 9, 2025
Average and Avg
Description
- Returns the numerical average value in a dataset, ignoring text.
ℹ️ AVERAGE and AVG are synonymous and can be used interchangeably
Syntax
AVERAGE(value1, [value2, ...])
or
AVG(value1, [value2, ...])Examples
-
AVERAGE(2,2)returns2 -
AVG(2,4,6,8)returns5
Maximum
Description
- Returns the maximum value in a numeric dataset.
Syntax
MAX(value1, [value2, ...])Examples
-
MAX(3,6,-9)returns6
Minimum
Description
- Returns the minimum value in a numeric dataset.
Syntax
MIN(value1, [value2, ...])Examples
-
MIN(3,6,-9)returns-9