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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
FZOU
Helper IV
Helper IV

Running total

Hello community,

 

I need your help lease is such a problem i'm calculating a running total it's work fine but with a weird comportment.

Running tot.PNG

Until the above picture everything is ok but when i move the filter to start from 15/02/2018 the cumul column ignoer the value of 01/02/2018 and start from 1200 like the picture below

Running fil.PNG

 

my desired result is if i move the slicer is still take the value of previous date like this table below, i need your help and thank you

Sales DateDemandQtCumul
15/02/201812002200
24/02/201815003700
15/04/201810004700
Total47004700

 

this is my formula : 

Cumul = CALCULATE(SUM(Demand[DemandQt]);FILTER(ALLSELECTED(demand);Demand[Sales Date]<=max(Demand[Sales Date])))
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@FZOU 

if you use allselected it will take the selected dates , you can use all or datestyd as per need

 

Cumul = CALCULATE(SUM(Demand[DemandQt]);FILTER(ALL(demand);Demand[Sales Date]<=max(Demand[Sales Date])))

Cumul = CALCULATE(SUM(Demand[DemandQt]);datesytd('Date'[Date])

Cumul = CALCULATE(SUM(Demand[DemandQt]);datesytd('Date'[Date],"1/31")// force year from Feb

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@FZOU 

if you use allselected it will take the selected dates , you can use all or datestyd as per need

 

Cumul = CALCULATE(SUM(Demand[DemandQt]);FILTER(ALL(demand);Demand[Sales Date]<=max(Demand[Sales Date])))

Cumul = CALCULATE(SUM(Demand[DemandQt]);datesytd('Date'[Date])

Cumul = CALCULATE(SUM(Demand[DemandQt]);datesytd('Date'[Date],"1/31")// force year from Feb

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

@amitchandak  thank you very much for your fast response, it work,i'm still confused with ALL and ALL selected

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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