Forum Discussion
harshagraj
Post Partisan
4 years agoExcluding Nan in Average calculation
Hello all,
Please see the attached image.
I need to calculate the avg of avg in the left side. so i have used the calculation
Average average per snap_date =
AVERAGEX(
VALUES('tep_projects'[snap_date]),[Average]).
Now in the above screenshot for B i need to exclude the Nan and calculate the avg for 3 months only.
Kindly help me to modify the calculations.
amitchandak v-chenwuz-msft
amitchandak v-chenwuz-msft
harshagraj , Try
AVERAGEX(
VALUES('tep_projects'[snap_date]),iferror([Average], blank(), [Average]) )
1 Reply
- amitchandak
Super User
harshagraj , Try
AVERAGEX(
VALUES('tep_projects'[snap_date]),iferror([Average], blank(), [Average]) )