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

Cumulative Total with Max Date Filter

Hi 

I'm very new to PowerBi and need some help with the Cumulative Sum Dax formula. I have the following table of Measures created to show Cumulative Sales for current year (Actual), LY and Budget. The data and formula appears correct.

Measures for Cumulative SalesMeasures for Cumulative Sales

However, when I select a specific Month in the slicer, eg Apr, I get incorrect figures for the cumulative totals.

Image2.PNG

I'm not sure what is wrong and hope someone can help me with this. I've used the following measure for Sales Actual and YTD Sales Actual:

 

Sales Actual = CALCULATE(SUM(SalesData[Sales]),FILTER(SalesData,SalesData[Scenario]="Actual"))
 
YTD Sales Actual = CALCULATE([Sales Actual],FILTER(ALLSELECTED(Dates),Dates[Date] <= MAX(Dates[Date])))
 
Many Thanks.

 

2 ACCEPTED SOLUTIONS
avanderschilden
Resolver I
Resolver I

Hello,

 

Your cumulative measure should be something like this;

 

Cumulative Sales Amount =
VAR _MaxDate =
    MAX ( 'Dates'[Date] )
VAR _Result =
    CALCULATE ( [Sales Actual], 'Calendar'[Date] <= _MaxDate )
RETURN
    _Result

View solution in original post

Anonymous
Not applicable

This is now solved. I changed from ALLSELECTED to ALL. 

A similar issued was already solved in attached.

 https://community.powerbi.com/t5/Desktop/Slicer-selection-changes-the-cumulative-total/td-p/655657.

 

I managed to solve this by changing from ALLSELECTED to ALL.  My apologies, I should have reviewed existing forum posts more thoroughly. Thanks

 

 

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

This is now solved. I changed from ALLSELECTED to ALL. 

A similar issued was already solved in attached.

 https://community.powerbi.com/t5/Desktop/Slicer-selection-changes-the-cumulative-total/td-p/655657.

 

I managed to solve this by changing from ALLSELECTED to ALL.  My apologies, I should have reviewed existing forum posts more thoroughly. Thanks

 

 

avanderschilden
Resolver I
Resolver I

Hello,

 

Your cumulative measure should be something like this;

 

Cumulative Sales Amount =
VAR _MaxDate =
    MAX ( 'Dates'[Date] )
VAR _Result =
    CALCULATE ( [Sales Actual], 'Calendar'[Date] <= _MaxDate )
RETURN
    _Result
Anonymous
Not applicable

Thank you avendarschildren. I've tried your solution and it has 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