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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi All,
below data i have grand total row. where it is actually summing up the values in total section.
but i want to display average there, for example in this case it should display 87 not 439.
i have tried many measure ideas, below is one.
kindly help
Solved! Go to Solution.
HI @AntrikshSharma thanks for your time in answering my question.
I actually tried many measures from the morning nothing worked out.
Strangley below measure working as per my expectation.
Try
Sum - Avg =
AVERAGEX (
VALUES ( 'Calender Date'[Month] ),
CALCULATE ( SUM ( SumView[Category Pref.] ) )
)
HI @AntrikshSharma thanks for your time in answering my question.
I actually tried many measures from the morning nothing worked out.
Strangley below measure working as per my expectation.