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
Niharika24
Frequent Visitor

how to add percentage column in the end of the matrix table.

percentage of grand total

percentage.PNG

1 ACCEPTED SOLUTION
Icey
Community Support
Community Support

Hi @Niharika24 ,

 

Please check if this could meet your requirements.

Measure =
VAR Count_ =
    COUNT ( 'Finding RAC-combine'[QOID] )
VAR CountAll_ =
    CALCULATE ( COUNT ( 'Finding RAC-combine'[QOID] ), ALLSELECTED () )
RETURN
    IF (
        HASONEVALUE ( 'Finding RAC-combine'[Sub Themes] )
            && HASONEVALUE ( 'Finding RAC-combine'[Area] ),
        Count_,
        COUNT_ & ", "
            & DIVIDE ( Count_, CountAll_ ) * 100 & "%"
    )

 

Icey_0-1642151363729.png

 

 

Best Regards,

Icey

 

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

5 REPLIES 5
Icey
Community Support
Community Support

Hi @Niharika24 ,

 

Please check if this could meet your requirements.

Measure =
VAR Count_ =
    COUNT ( 'Finding RAC-combine'[QOID] )
VAR CountAll_ =
    CALCULATE ( COUNT ( 'Finding RAC-combine'[QOID] ), ALLSELECTED () )
RETURN
    IF (
        HASONEVALUE ( 'Finding RAC-combine'[Sub Themes] )
            && HASONEVALUE ( 'Finding RAC-combine'[Area] ),
        Count_,
        COUNT_ & ", "
            & DIVIDE ( Count_, CountAll_ ) * 100 & "%"
    )

 

Icey_0-1642151363729.png

 

 

Best Regards,

Icey

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

thank you for your solution! Can I ask a few questions please?
1) My percentage has 14 decimals! how can I change it to 2 only? (I already tried to edit the formatting ribbon on top)
2) There is 1 row where no percentage is showing, maybe because there was only 1 number in that row? Do you know how to fix this please? 

Anonymous
Not applicable

Smart workaround

😀

amitchandak
Super User
Super User

@Niharika24 , on is you can change total using isinscope

 

if(not(isinscope([Area])) ,[% Measure], [Measure])

 

Otherwise check work around

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

is this a DAX formula? could you please type all of it?

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 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.

Top Solution Authors