Forum Discussion
cristianml
Post Prodigy
6 years agoAverage measure in Pivot Table with PQ
Hi, I have an issue with a meaure that shows the average but not the one I Expected. If you see in the screenshot below it shows the average 93 but should be 86. This is because is taken the aver...
az38
Community Champion
6 years agohi cristianml
try a simple measure
Measure = CALCULATE(
AVERAGE(Rate_Card_Table[Rate Card Value]);
NOT(ISBLANK([Actual LCR]))
)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
what field do you want to aggregate? Rate Card Value or Actual LCR ?
Measure = CALCULATE( AVERAGE(Rate_Card_Table[Actual LCR]); NOT(ISBLANK([Actual LCR])) )do not hesitate to give a kudo to useful posts and mark solutions as solution
- cristianml6 years ago
Post Prodigy
Hi az38 ,
I want to modify the measure Rate Card Value in order to calculate the correct average.
The Rate Card Value comes from Rate card table and the Actual LCR comes from RT Actual Table.
Thanks!