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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
mohittimpus
Helper V
Helper V

Need Percentage in Column but showing in Row in Power BI Matrix Visualization

Hello All,

 

I Need Percentage in Column but showing in Row in matrix visualization as showing in below image :

Screenshot_4.jpg

One more required example below like:

 

Screenshot_3.jpg

 

Please find attaached .PBIX file below:

https://drive.google.com/file/d/1hsjPgX2mU6Jx4oxaZ0fUerIOkXhAv0-g/view?usp=sharing 

1 ACCEPTED SOLUTION
v-yalanwu-msft
Community Support
Community Support

Hi @mohittimpus  ,

 

According to your description, you could create a measure by the following formula:

percentage =
VAR _count =
    CALCULATE (
        COUNT ( Recertification[CERTIFICATION] ),
        ALLEXCEPT ( Recertification, Recertification[Executive Approval] )
    )
VAR _total =
    IF (
        HASONEVALUE ( Recertification[SYSTEMNAME] ),
        COUNT ( Recertification[CERTIFICATION] ),
        FORMAT ( DIVIDE ( _count, COUNTROWS ( ALL ( Recertification ) ) ), "Percent" )
    )
RETURN
    IF (
        ISINSCOPE ( Recertification[Executive Approval] ),
        _total,
        FORMAT ( 1, "Percent" )
    )

Then put this measure in "Values" field:

2.png
Best Regards,
Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-yalanwu-msft
Community Support
Community Support

Hi @mohittimpus  ,

 

According to your description, you could create a measure by the following formula:

percentage =
VAR _count =
    CALCULATE (
        COUNT ( Recertification[CERTIFICATION] ),
        ALLEXCEPT ( Recertification, Recertification[Executive Approval] )
    )
VAR _total =
    IF (
        HASONEVALUE ( Recertification[SYSTEMNAME] ),
        COUNT ( Recertification[CERTIFICATION] ),
        FORMAT ( DIVIDE ( _count, COUNTROWS ( ALL ( Recertification ) ) ), "Percent" )
    )
RETURN
    IF (
        ISINSCOPE ( Recertification[Executive Approval] ),
        _total,
        FORMAT ( 1, "Percent" )
    )

Then put this measure in "Values" field:

2.png
Best Regards,
Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@mohittimpus , seem like you are looking for a hybrid column

if you are looking for a Hybrid display with Matrix Column and measure
https://community.powerbi.com/t5/Community-Blog/Creating-a-custom-or-hybrid-matrix-in-PowerBI/ba-p/1...
https://community.powerbi.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/...

vote for Hybrid Table
https://ideas.powerbi.com/ideas/idea/?ideaid=9bc32b23-1eb1-4e74-8b34-349887b37ebc

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Top Solution Authors