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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
Anonymous
Not applicable

Cumulative Sum depending on the selected month

Greetings everyone,

 

Here's my problem:

 

I am using the following database to track some metrics:

 

Database 

 

What I would like to have is:

 

When selecting a month inside the slicer (ex: March), I would have a measure that returns the sum of all months until March (Jan, Feb, Mar).

 

For now, I’ve selected every month on the slicer to achieve this condition ... but i know that it’s not the best way.

 

Any ideas?

 

Best regards

1 ACCEPTED SOLUTION
v-xicai
Community Support
Community Support

Hi @Anonymous ,

 

You may create column and measure like DAX below.

 

Column:

YearMonth = VALUE(FORMAT('Table1'[Date],"yyyymm"))    
//put this column into Slicer visual as filter options


Measure:

Cumulative sum= CALCULATE(SUM(Table1[Value]),FILTER(ALLSELECTED(Table1), Table1[Metric] =MAX(Table1[Metric])&& Table1[YearMonth]<= MAX(Table1[YearMonth])))

 

Best Regards,

Amy 

 

Community Support Team _ Amy

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

3 REPLIES 3
v-xicai
Community Support
Community Support

Hi @Anonymous ,

 

You may create column and measure like DAX below.

 

Column:

YearMonth = VALUE(FORMAT('Table1'[Date],"yyyymm"))    
//put this column into Slicer visual as filter options


Measure:

Cumulative sum= CALCULATE(SUM(Table1[Value]),FILTER(ALLSELECTED(Table1), Table1[Metric] =MAX(Table1[Metric])&& Table1[YearMonth]<= MAX(Table1[YearMonth])))

 

Best Regards,

Amy 

 

Community Support Team _ Amy

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

Hi, for all those interested so turns out i just need to use TotalYTD instead in my dax code and ensure that my date and fact tables are connected via proper date columns instead of the original where it is just based on date dimension IDs

TomMartens
Super User
Super User

Hey @Anonymous ,

 

first you have to shape your data, meaning pivoting the month/year columns into a single month/year column with additional value column. This step will create rows from columns.

Read about this function here: https://radacad.com/pivot-and-unpivot-with-power-bi

Then you have to transform the month/year column into a real date or datetime column.

 

After that you can finally use a dedicated Calendar table. Almost everything you need that is related to timeintelligence related calculations is described in this article: https://www.daxpatterns.com/time-patterns/

 

Hopefully, this provides some new ideas to tackle your challenge.

 

Regards,

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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