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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Rogerh
Helper II
Helper II

Percentage of grand total, Create a measure that can be used in another calculation

Hello Power BI Community,

 

I'm having trouble trying to work out how to create a measure that is a Persentage of a grand total so I can use the measure in another calculation. I know you can update a Measure to be a percentage of a grand total (as shown below) but I am unable to use that for the next calculation.

 

My table is currently set up as follows:

 

Weekday = from my Calander Table

Orders_Count_Orders = Measure for Total of Orders placed 

 

The next column is what I want to change to be an actual measure but it is currently made up of the 'Orders_Count_Orders' using the drop down in the values to change it to the show value as a percentage of grand total

 

%GT Orders_Count_Orders = Measure for Total of Orders placed, show value as to percentage of grand total

 

Can someone please help me with the Dax code for making this measure?

 

WeekdayOrders_Count_Orders%GT Orders_Count_Orders
Mon93215.49%
Tue116019.28%
Wed111818.58%
Thu85014.13%
Fri77012.80%
Sat5859.72%
Sun6019.99%

 

Thank you in advance for any help

Roger

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Rogerh , Try a measure like

 

divide(sum(Table[Orders_Count_Orders]) , calculate(sum(Table[Orders_Count_Orders]) , allselected(Table)))

View solution in original post

3 REPLIES 3
negi007
Community Champion
Community Champion

@Rogerh  use below measure
GT_% = SUM('%GT'[Orders_Count_Orders])/CALCULATE(SUM('%GT'[Orders_Count_Orders]),ALLSELECTED('%GT'))



Did I answer your question? Mark my post as a solution!
Appreciate your Kudos



Proud to be a Super User!


Follow me on linkedin

amitchandak
Super User
Super User

@Rogerh , Try a measure like

 

divide(sum(Table[Orders_Count_Orders]) , calculate(sum(Table[Orders_Count_Orders]) , allselected(Table)))

Perfect, thank you your help @amitchandak ! Saved me again 🙂 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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