Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! 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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 82 | |
| 48 | |
| 36 | |
| 31 | |
| 29 |