DAX Function Guide

AVERAGE
Empty image or helper icon

Sam McKay

CEO & Founder

How does the AVERAGE work?
As a type of aggregate function, the AVERAGE function (DAX) will return the average of all the numbers within a column.
AVERAGE Formula Syntax

AVERAGE(
     <column>
)

How do you use the AVERAGE?

This function uses the specified column as its argument and counts up the average of the values placed within the column. 

Its lone parameter is the ColumnName, which is the column that has the numbers for which you want the average.   

Related Blog Posts

Loading

Considerations when using the AVERAGE?

If there are no rows to aggregate, the function returns a blank. But if there are rows but none of them meets the specified criteria, the function returns 0.  

If you want to find the average of an expression that evaluates to a set of numbers, use the AVERAGEX function instead. 

Related Video Tutorials

Loading

Formula examples using the AVERAGE

=AVERAGE(InternetSales[ExtendedSalesAmount])

=AVERAGE(InternetSales[ExtendedSalesAmount])

=AVERAGE(A2:A6, 5)

Related Courses

Loading