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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors