Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hi I am struggling with getting the percentages in powerbi. I have seen percentage calculation in columns but not in rows in a matrix table.
In my Excel it looks like this:
I do not know how to calculate the %approved (which is the percentage of total approved from grand total) . is it possible to compute for that and have it as a row and not a column (coz im finding percentage calculation mostly for columns)
Solved! Go to Solution.
@Anonymous,
You may add the following measure.
Measure =
IF (
HASONEVALUE ( Table1[Status] ),
SUM ( Table1[Value] ),
FORMAT (
DIVIDE (
CALCULATE ( SUM ( Table1[Value] ), Table1[Status] = "Approved" ),
SUM ( Table1[Value] )
),
"0.00%"
)
)
@Anonymous,
You may add the following measure.
Measure =
IF (
HASONEVALUE ( Table1[Status] ),
SUM ( Table1[Value] ),
FORMAT (
DIVIDE (
CALCULATE ( SUM ( Table1[Value] ), Table1[Status] = "Approved" ),
SUM ( Table1[Value] )
),
"0.00%"
)
)
thanks @v-chuncz-msft this really works!
however though i cannot put in the same matrix table. its not possible right!
but anyways thank you very much!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 78 | |
| 48 | |
| 34 | |
| 31 | |
| 29 |