Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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.
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
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 Date | DemandQt | Cumul |
15/02/2018 | 1200 | 2200 |
24/02/2018 | 1500 | 3700 |
15/04/2018 | 1000 | 4700 |
Total | 4700 | 4700 |
this is my formula :
Solved! Go to Solution.
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
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
@amitchandak thank you very much for your fast response, it work,i'm still confused with ALL and ALL selected
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
76 | |
76 | |
55 | |
37 | |
34 |
User | Count |
---|---|
99 | |
56 | |
53 | |
44 | |
40 |