DAX Functions
DAX Functions
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
JASWANTHI MAMIDISETTY