Forum Discussion
Create e Cumulative SUM from a specific date to Today's date
Hi,
I would like to build a measure that calculates a cumulative sum from a specific date in the past up to Today's date.
Up to now I've been able only to write this script:
- Anonymous4 years ago
Hi giroldoale ,
Please try:
Measure = CALCULATE([@Qty_Planned],FILTER('Table',[Date]>=DATE(2021,9,30) && [Date]<=TODAY()))Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
2 Replies
- SpartaBI
Community Champion
giroldoale something like:
CALCULATE([@Qty_Planned],CalendarVersamentoEOP[Date].[Date] <= MAX(CalendarVersamentoEOP[Date].[Date]))
In case it answered your question, please accept the solution to help other members find it. Appreciate Your Kudos.
SpartaBI Logo
Visit SpartaBI website Visit SpartaBI Linkdin Visit SpartaBI Facebook
Showcase Report – Contoso By SpartaBI - AnonymousNot applicable
Hi giroldoale ,
Please try:
Measure = CALCULATE([@Qty_Planned],FILTER('Table',[Date]>=DATE(2021,9,30) && [Date]<=TODAY()))Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.