Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi Team,
I'm facing issues in Cummulative calculation there i'm applied the dates between slicer . How it should calculate is only summarize the before from date values should summarize.
Thanks and Regards,
Thenn
Solved! Go to Solution.
Hi Guys
I found it
your also facing this issues use tis calculation,Ignored selected date values its summarize before selected date only.
Hi Guys
I found it
your also facing this issues use tis calculation,Ignored selected date values its summarize before selected date only.
Based on your needs, I have created the following table.
Use the following formula to create a date table, depending on your specific needs.
Date = CALENDAR(DATE(2024,2,14),DATE(2024,2,24))
Establish a relationship between the date columns of two tables in Model View.Then you can use the following dax to get the result you want.
Cumulative Total Up To Selected Date =
VAR SelectedMaxDate = MAX('Date'[Date])
VAR SelectedMinDate = MIN('Date'[Date])
RETURN
SUMX(
FILTER(
ALL('Date'),
'Date'[Date] <= SelectedMaxDate && 'Date'[Date] >= SelectedMinDate
),
CALCULATE(SUM('Table'[Value]))
)
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous
I found the selected date cummulative , my requirement is not selected date cummulative .
For ex now you selcted 2/15/2024 to 2/17/2024 if selected dates between it should cummulative only start date to 2/15/2024 datas only should change based on date selection. If you want more clarification let me know.
Thanks and Regards,
Thennarasu R
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 68 | |
| 45 | |
| 43 | |
| 36 | |
| 23 |
| User | Count |
|---|---|
| 196 | |
| 126 | |
| 106 | |
| 78 | |
| 55 |