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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Dear Community.
I am trying to cumulate a quantity column based on months. I am able to get the qty's to cumulate from 1 to 12 (Jan-to-Dec).
What I want to do is have the cumulation start with month 10 (Oct) and run to 9 (Sep). I have another column I created that ties the month to order. I set the order but it still is not working.
Here is how I calculated the total:
Hi @Gdibbs
DATESYTD has a second argument for year-end. (This is making the assumption that you are using a date table.)
Cumulative Quantity =
CALCULATE(
[Total Quantity],
DATESYTD( 'Date'[Date], "09/30" )
)
Thank you very much. I will be trying this over the weekend with a dates table.