AVERAGE Function (DAX)
How does the AVERAGE Function (DAX) work?
As a type of aggregate function, the AVERAGE function (DAX) will return the average of all the numbers within a column.
ABS Formula Syntax
AVERAGE(
<column>
)
How do you use the AVERAGE Function (DAX)?
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
Considerations when using the AVERAGE Function
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.