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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi all,
I want to calculate running sum over date. In the data shown i want to calculate column c (which is cooming from column B)
Thanks
Solved! Go to Solution.
Try this formula:
Running Total =
CALCULATE (
SUM ( TableName[gp] ),
FILTER (
ALL ( TableName[date] ),
TableName[date] <= MAX ( TableName[date] )
)
)
Hi,
Create a Calendar Table and build a relationship from the Date column of your Data Table to the Date column of the Calendar Table. To your visual, drag Date from the Calendar Table. Write these measures
GP Total = SUM(Data[GP])
Cumulative GP Total = CALCULATE([GP Total],DATESBETWEEN(Calendar[Date],MINX(ALL(Calendar),Calendar[Date]),MAX(Calendar[Date])))
Hope this helps.
Try this formula:
Running Total =
CALCULATE (
SUM ( TableName[gp] ),
FILTER (
ALL ( TableName[date] ),
TableName[date] <= MAX ( TableName[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!