Forum Discussion
cristianml
Post Prodigy
6 years agoDax Average calculation - data filtered in Pivot Table
Hi, I have an issue with one of my measures that is not showing the correct Average in the Pivot Table. If you see in the screenshot below, the measure Rate Card Value should show 86 instead of 9...
az38
Community Champion
6 years agohi cristianml
without full data model I could only suggest 2 p=issues:
first, correct compare with blank as
Rate Card Value=AVERAGEX(Rate_Card_Table, IF(ISBLANK([Actual LCR]), BLANK(),Rate_Card_Table[Rate Card Value]))second, replace blank() to 0
Rate Card Value=AVERAGEX(Rate_Card_Table, IF(ISBLANK([Actual LCR]), 0,Rate_Card_Table[Rate Card Value]))do not hesitate to give a kudo to useful posts and mark solutions as solution
- cristianml6 years ago
Post Prodigy
- az386 years ago
Community Champion
Measures_RT_Actual is disconnected from other data models
whats statement defines [Actual LCR] measure?
do not hesitate to give a kudo to useful posts and mark solutions as solution
- cristianml6 years ago
Post Prodigy
Hi az38 ,
Follow the statement for Actual LCR:
Actual LCR=CALCULATE(AVERAGE(RT_Actual[Quantity]),RT_Actual[Category]="Cost Rate")
I have a measure table to have ONLY measures there. But as you see the "Actual LCR" comes from te table RT_Actual.
Hope this helps