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.
I have running total which doing as expected but I'm unable to stop it a the last value date instead it going on forever till end of date calendar.
Hi @Sun4real - Create a Measure for the Last Date with Data
LastDateWithData =
CALCULATE(
MAX(Sales[Date]),
REMOVEFILTERS('DateTable')
)
I have taken the reference of Sales[Date], you can replace with the appropriate column from your dataset that contains the date of each transaction.
create main measure using the above lastdatewithdata with running totals
RunningTotal =
CALCULATE(
SUM(Sales[Amount]),
FILTER(
ALL('DateTable'),
'DateTable'[Date] <= MAX('DateTable'[Date])
&& 'DateTable'[Date] <= [LastDateWithData]
)
)
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!
Proud to be a Super User! | |
The result is still the same. I've attached the pbix to make it easier
User | Count |
---|---|
98 | |
77 | |
76 | |
48 | |
27 |