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
I have a created date calculated column
Total sum requirements as a measure
I want to create a running total and replace the total sum requirements by running total
Unfortunately, the quick measure of running total doesn't return the correct results.
Here is the calculation
Total Requirements running total in Created 2 =
CALCULATE(
[Total Requirements],
FILTER(
ALLSELECTED('SP Fit/Gap'[Created]),
ISONORAFTER('SP Fit/Gap'[Created], MAX('SP Fit/Gap'[Created]), DESC)
)
)
Here is the visual
Hi @Anonymous ,
Try this:
Total Requirements running total in Created 2 =
CALCULATE (
[Total Requirements],
FILTER (
ALLSELECTED ( 'SP Fit/Gap' ),
'SP Fit/Gap'[Sp or Gap] = MAX ( 'SP Fit/Gap'[Sp or Gap] )
&& 'SP Fit/Gap'[Created] <= MAX ( 'SP Fit/Gap'[Created] )
)
)
If this doesn't work either, please share me your .pbix file for test. Please remove sensitive information. It is suggested to upload your file to OneDrive for Business and then paste the link here.
Best regards
Icey
If this post helps,then consider Accepting it as the solution to help other members find it faster.
@Anonymous
Try any of the following 2
Total Requirements running total in Created 2 =
CALCULATE (
[Total Requirements],
FILTER (
ALLSELECTED ( 'SP Fit/Gap' ),
'SP Fit/Gap'[Created] <= MAX ( 'SP Fit/Gap'[Created] )
)
)
-- OR
Total Requirements running total in Created 2 =
CALCULATE (
[Total Requirements],
FILTER (
ALL ( 'SP Fit/Gap' ),
'SP Fit/Gap'[Created] <= MAX ( 'SP Fit/Gap'[Created] )
)
)
After the calculation, this is how the chart looks like
@Anonymous
Also can you add the date field, the date value and running value in a table and share a snapshot with us so as to see how it looks like?
@Anonymous
Can you share the workspace with us?
Mask any sensitive data
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!