Power Query
published
Search
⌃K

List.Average

List.Average

Returns the average of the values. Works with number, date, datetime, datetimezone and duration values.
function (list as list, optional precision as nullable any) as nullable any

Description

Returns the average value for the items in the list, list. The result is given in the same datatype as the values in the list. Only works with number, date, time, datetime, datetimezone and duration values. If the list is empty null is returned.

Category

List.Averages

Examples

Find the average of the list of numbers, {3, 4, 6}.
List.Average({3, 4, 6})
4.333333333333333
Find the average of the date values January 1, 2011, January 2, 2011 and January 3, 2011.
List.Average({#date(2011, 1, 1), #date(2011, 1, 2), #date(2011, 1, 3)})

date(2011, 1, 2)