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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I'm trying to calculate the running totals between my period slicer.
Atm. I can only manage to filter on max day selected and not the min with the following formula:
[Total Budgetupdated] = A calculated Measure
Period[Date] = My period tabel which the slicer isreferencing from.
Solved! Go to Solution.
Hi,
I am not sure how your datamodel looks like, but please try using ALLSELECTED dax function instead of ALL, and check whether it suits your requirement.
Cumulative Total Budget =
CALCULATE (
[Total Budget updated],
FILTER (
ALLSELECTED ( Period[Date] ),
Period[Date] <= MAX ( ( Period[Date] ) )
)
)
Hi,
I am not sure how your datamodel looks like, but please try using ALLSELECTED dax function instead of ALL, and check whether it suits your requirement.
Cumulative Total Budget =
CALCULATE (
[Total Budget updated],
FILTER (
ALLSELECTED ( Period[Date] ),
Period[Date] <= MAX ( ( Period[Date] ) )
)
)
It will still select all dates prior to my Date slicer
Hi,
Thank you for your feedback.
If it is OK with you, please share your sample pbix file's link here, and then I can try to look into it to come up with a more accurate solution.
Thank you.