Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi,
Can you please help me with this scenario?
The matrix row gives an incorrect average. Please see image:
Solved! Go to Solution.
You may use the following measure.
Measure = IF ( HASONEFILTER ( Table1[Test] ), AVERAGE ( Table1[Value] ), AVERAGEX ( ALLSELECTED ( Table1[Test] ), CALCULATE ( AVERAGE ( Table1[Value] ) ) ) )
You may use the following measure.
Measure = IF ( HASONEFILTER ( Table1[Test] ), AVERAGE ( Table1[Value] ), AVERAGEX ( ALLSELECTED ( Table1[Test] ), CALCULATE ( AVERAGE ( Table1[Value] ) ) ) )
hi @rendalignacio,
Why are you saying that is wrong? Careful with average of averages as they are not the same of total average.
Does this make sense?