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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
CNixon435
Regular Visitor

DAX Measure for creating a 100% Stacked Ribbon Chart

I am trying to build a measure that will display my "HB Gross Charges" data as a % of total for each fiscal year, similar to the Stacked Bar Chart below.

 

I found this post that is very similar to what I am trying to attempt. However, the hitch is that my "HB Gross Charges" field is a measure, so I am not sure how to set up the correct Variable to be able to do this. 

 

Doing my best to learn DAX, but this one is over my head.

 

Screenshot 2023-08-16 152659.pngScreenshot 2023-08-16 152743.png

 

FiscalYearCase Primary MCFC 2 -  Payor DESCHB Gross Charges
FY23Medicaid$5,272,568.90
FY22Medicaid$6,101,612.42
FY22Medicare$15,835,404.85
FY22Managed Medicare$18,292,340.60
FY23Medicare$20,140,686.32
FY23Managed Medicaid$20,442,365.85
FY22Managed Medicaid$20,929,100.95
FY23Managed Medicare$22,104,022.82
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @CNixon435 ,

Please have a try.

HB Gross Charges % of Total = 
DIVIDE([HB Gross Charges], CALCULATE([HB Gross Charges], ALLSELECTED()))

Or try this .

HB Gross Charges % of Total =
VAR TotalCharges =
    CALCULATE ( [HB Gross Charges], ALL ( 'Date'[Fiscal Year] ) )
RETURN
    DIVIDE ( [HB Gross Charges], TotalCharges )

 

How to Get Your Question Answered Quickly 

 

If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .

 

Best Regards
Community Support Team _ Rongtie

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

1 REPLY 1
Anonymous
Not applicable

Hi @CNixon435 ,

Please have a try.

HB Gross Charges % of Total = 
DIVIDE([HB Gross Charges], CALCULATE([HB Gross Charges], ALLSELECTED()))

Or try this .

HB Gross Charges % of Total =
VAR TotalCharges =
    CALCULATE ( [HB Gross Charges], ALL ( 'Date'[Fiscal Year] ) )
RETURN
    DIVIDE ( [HB Gross Charges], TotalCharges )

 

How to Get Your Question Answered Quickly 

 

If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .

 

Best Regards
Community Support Team _ Rongtie

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

 

 

 

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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