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! 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] )
)
)
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.