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
Anonymous
Not applicable

How to calculate % of total for a column over time series?

I need help in calculating % of the total for a column over time. I have used this dax to calculate it for "Country" 

DIVIDE(SUM(Sheet1[Value]),CALCULATE(SUM(Sheet1[Value]),Sheet1[Country] in {"USA","Canada"}),0) since I had only 2 countries I was able to plug in those values into my "in" condition but I don't want to plug in all my states into my  "in" condition. 
 
Please see the below picture
 

Capture1.PNG

1 ACCEPTED SOLUTION
ahmedoye
Resolver III
Resolver III

Hi @Anonymous , to make your DAX easier to read and write, break it down this way:

  1. Amount = SUM(Sheet1[Value])
  2. State Grand Total =  CALCULATE([Amount], ALL(Sheet1[States]))
  3. % of Grand Total = DIVIDE([Amount], [State Grand Total], 0)

Remember to format your measure as a percentage afterwards.

 

If this solves your question, kindly mark it as a solution.

View solution in original post

2 REPLIES 2
ahmedoye
Resolver III
Resolver III

Hi @Anonymous , to make your DAX easier to read and write, break it down this way:

  1. Amount = SUM(Sheet1[Value])
  2. State Grand Total =  CALCULATE([Amount], ALL(Sheet1[States]))
  3. % of Grand Total = DIVIDE([Amount], [State Grand Total], 0)

Remember to format your measure as a percentage afterwards.

 

If this solves your question, kindly mark it as a solution.

Anonymous
Not applicable

Thanks. This worked.

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.

Top Solution Authors