DAX AGGREGATION
FUNCTIONS :
AVERAGE()
VS
AVERAGEX()
JASWANTHI MAMIDISETTY
1
AVERAGE()
Calculates the arithmetic mean of a
column. It considers only numeric
values and ignores non-numeric
values.
Syntax:
=AVERAGE(column_name)
2
AVERAGEX()
AVERAGEX is a more flexible
function that allows to calculate
averages based on expressions.
Syntax:
= AVERAGEX(table, expression)
AVERAGEX()
It evaluates the given expression for
each row, then calculates the
average of the results
It is particularly useful when you
want to perform a more complex
calculation on each row before
averaging.
DO YOU LIKE
THE POST ?
JASWANTHI MAMIDISETTY