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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello,
I am having an issue that I can't seem to figur out.
I need a cumulative SUM but only since a certain date.
Solved! Go to Solution.
@Anonymous , Try like
Calculated Column= SUMX(Filter('Table','Table'[Date]<= EARLIER('Table'[Date]) && 'Table'[Date] > date(2021,01,01)), [Column])
Hi @Anonymous ,
You can try this measure..
Column =
CALCULATE (
SUM(Column),
ALL ( 'Table' ),
'Table'[Date] <= EARLIER ( 'Table'[Date] ),
'Table'[Date] >= DATE(2021,01,01)
)
@Anonymous , Try like
Calculated Column= SUMX(Filter('Table','Table'[Date]<= EARLIER('Table'[Date]) && 'Table'[Date] > date(2021,01,01)), [Column])
Have one question, if you're able to answer please.
Why doesn't it work for the opposite situation, so
< date(2021,01,01) instead of >date(2021,01,01)
That works for me!
Thank you so much
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.