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
I have a matrix created where I have a Score column that contains Met and Not Met. The counts look good but I would like to have the total be a % of the Met. I'm assuming I need to create a measure? If so, can anyone post the code for it please?
Solved! Go to Solution.
hi, @Anonymous
Based on my research, You could try this way as below:
Step1:
Create a dim Score table like this:
Add an additional value "A" in it.
Step2:
Create the relationship between them as below:
Step3:
Create a measure like this
Measure 2 =
IF (
CALCULATE ( MIN ( 'Dim'[Score] ) ) = "A",
FORMAT (
DIVIDE (
CALCULATE ( COUNTA ( 'Table'[Score] ), 'Table'[Score] = "Met" ),
CALCULATE ( COUNTA ( 'Table'[Score] ) )
),
"Percent"
),
CALCULATE ( COUNTA ( 'Table'[Score] ) )
)
Step4:
Drag Score from dim table and measure into matrix visual
Result:
and here is pbix file, please try it.
Best Regards,
Lin
hi, @Anonymous
Based on my research, You could try this way as below:
Step1:
Create a dim Score table like this:
Add an additional value "A" in it.
Step2:
Create the relationship between them as below:
Step3:
Create a measure like this
Measure 2 =
IF (
CALCULATE ( MIN ( 'Dim'[Score] ) ) = "A",
FORMAT (
DIVIDE (
CALCULATE ( COUNTA ( 'Table'[Score] ), 'Table'[Score] = "Met" ),
CALCULATE ( COUNTA ( 'Table'[Score] ) )
),
"Percent"
),
CALCULATE ( COUNTA ( 'Table'[Score] ) )
)
Step4:
Drag Score from dim table and measure into matrix visual
Result:
and here is pbix file, please try it.
Best Regards,
Lin
@v-lili6-msft This works but I can't believe there is not a simpler way. Also, this shows every row item including those that don't have data, I'm using a date slicer and items that don't occur in the filtered view are still showing but with no values. When I change the relationship to Both for Cross Filter, it removes the items that are empty but the % goes away
Try clicking on the drop down arrow for the column in your Values area and choosing Show As | Percent of Grand Total.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 37 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 130 | |
| 88 | |
| 82 | |
| 68 | |
| 64 |