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,
I have the following table:
I have created the following line chart with the cumulative sum of sales:
I have to create a custom tooltip that displays the Sum of sales and the sales running total. But The running total of the tooltip displays just the sum of sales. How can I fix this?
Thanks!
Solved! Go to Solution.
Hi,
Please try something like below.
For this kind of semantic model, that has only one table, try using ALL DAX function.
Running Total =
CALCULATE(
SUM(Sheet1[Sales]),
FILTER(
ALL(Sheet1[Date]),
Sheet1[Date] <= MAX(Sheet1[Date])
)
)
Hi,
Please try something like below.
For this kind of semantic model, that has only one table, try using ALL DAX function.
Running Total =
CALCULATE(
SUM(Sheet1[Sales]),
FILTER(
ALL(Sheet1[Date]),
Sheet1[Date] <= MAX(Sheet1[Date])
)
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!