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! Learn more
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
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.