Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Anonymous
Not applicable

New Matrix Column for Total Percentages

Hi All,

I've been stuck working on creating another column in my matrix chart to capture the total percentages (shown in the red). Does anyone have any suggestions on how to solve for this or where to begin with the DAX formula? Thank you in advance for your help!

 

StatusGroup 1Group 2TotalOpen/Closed %
Closed753511073.33 %
Open251540 26.67%
Total10050150100 %
1 REPLY 1
FreemanZ
Super User
Super User

hi @Anonymous ,

 

not sure if i fully get you, supposing you have a data table like:

Status Group Value
Open Group1 25
Open Group2 15
Closed Group1 70
Closed Group1 5
Closed Group2 35

 

try to plot a Matrix visual with two measures like:

ValueSum = SUM(data[Value])
Open/Closed% = 
VAR _all = CALCULATE([ValueSum], ALL(data[status]))
VAR _result = DIVIDE([ValueSum], _all)
RETURN _result

 

it worked like:

FreemanZ_0-1702817543966.png

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.