Functions

AVERAGE

Calculates the average of a list of values.

Syntax

double? AVERAGE(params double?[] args)
double? AVERAGE(params int?[] args)
decimal? AVERAGE(params decimal?[] args)

Example

AVERAGE(1,2,3,4)

Will return '2.5'.