Forum Discussion
cristianml
6 years agoPost Prodigy
Average 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
6 years agoCommunity Champion
hi 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 agoPost Prodigy
- az386 years agoCommunity 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 agoPost 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!