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.
Not wrapping my head around this today. Should be simple for an expert.
I have a matrix table with a main and sub category. All I want is to display the % of total by Category per row. Basically I need a measure that will take the likert range and give a % of total. So the Main Category Focus Area Not Sure of 10, need to show 9% next to it in the column since the total is 90. Then repeat for the sub categories. Any help would be appreciated. Thanks. Example below.
Solved! Go to Solution.
However, I prefer to choose easiest way to do it and not use many calculation.
Go to Power Query side(Transform Data)
Unpivot neccesary numerical columns.
Close & Apply.
Create a Measure %Percentage:
"
Kind Regards,
Gökberk Uzuntaş
📌 If this post helps, then please consider Accepting it as a solution and giving Kudos — it helps other members find answers faster!
🔗 Stay Connected:
📘 Medium |
📺 YouTube |
💼 LinkedIn |
📷 Instagram |
🐦 X |
👽 Reddit |
🌐 Website |
🎵 TikTok |
Just to clarify in case others use this thread. My solution was to utilize the second suggestion. My data was already unpivoted becasue it is survey data so did this mirroring above.
% Percentage =
VAR x =
CALCULATE(
count(Survey_Data[Value])
)
VAR y =
CALCULATE(
COUNT(Survey_Data[Value]),
ALLEXCEPT(Survey_Data, Focus_Area[Focus Area], Focus_Area[Q], Focus_Area[Swimlane])
)
RETURN
DIVIDE(x,y)
Thanks so much. Yes this worked. I had to do an AllExcept for everything in Rows for Matrix table. Have a great weekend and thanks again.
Hello @common763,
You can solve this problem two ways which are DAX or Power Query. I'm going to show how to solve with DAX way.
Firstly, I created a simple table:
Created a measure which gives total:
"
Created a measure which gives never percentage value:
"
And final result(You will do that for every numerical value):
Kind Regards,
Gökberk Uzuntaş
📌 If this post helps, then please consider Accepting it as a solution and giving Kudos — it helps other members find answers faster!
🔗 Stay Connected:
📘 Medium |
📺 YouTube |
💼 LinkedIn |
📷 Instagram |
🐦 X |
👽 Reddit |
🌐 Website |
🎵 TikTok |
However, I prefer to choose easiest way to do it and not use many calculation.
Go to Power Query side(Transform Data)
Unpivot neccesary numerical columns.
Close & Apply.
Create a Measure %Percentage:
"
Kind Regards,
Gökberk Uzuntaş
📌 If this post helps, then please consider Accepting it as a solution and giving Kudos — it helps other members find answers faster!
🔗 Stay Connected:
📘 Medium |
📺 YouTube |
💼 LinkedIn |
📷 Instagram |
🐦 X |
👽 Reddit |
🌐 Website |
🎵 TikTok |