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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
I have a matrix table as below , i am able to calculate total by using row subtotal option ,but i want average instead of total for all the feilds below .Can anyone suggest me how to do it ?
Solved! Go to Solution.
Hi @Anonymous ,
We can create a measure as below to work on it.
Measure = IF(ISINSCOPE('Table'[category]),SUM('Table'[count]),AVERAGE('Table'[count]))
Hi @Anonymous ,
We can create a measure as below to work on it.
Measure = IF(ISINSCOPE('Table'[category]),SUM('Table'[count]),AVERAGE('Table'[count]))
First, Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
Second, This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376
Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907
Hi there, it would help if you can share your current SUM measuare but you can try something like this:
YourMeasure1 = SUM(Table1[Column1]) or CALCULATE(SUM(Table1[Column1]),FILTER1)
YourMeasure2 = AVG(Table1[Column1]) or CALCULATE(AVG(Table1[Column1]),FILTER1)
YourMeasure3 = IF(ISBLANK(SELECTEDVALUE(Table1[User_Display_Name])),YourMeasure1,YourMeasure2)
Hope this helps, If not, feel free to share your more details like your current calculations so we could try to help you in a better way.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Regards,
Gian Carlo Poggi
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!