Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi there,
Imagine you have a dataset of three months of data with a pre-calculated column for year-to-date, YTD (you do not have the full year because it's too large). What DAX pattern would you use to calculate YTD?
The challenge is if the measure is summarized for the year - the latest month YTD values should be shown, rather than summing the months together. I've gotten it to work using the DAX below, but I'm running into huge performance hits because of the MAX(Period) part. Thank you for your advice!
YTD_Costs =
CALCULATE(SUM('Financials'[YTD_Cost]),
FILTER('Financials','Financials'[FiscalPeriod] = MAX(CalendarPeriods[FiscalPeriod]))
)
Hi,
Share some data and show the expected result.
Hi @firstredpepper,
Try this function:
https://msdn.microsoft.com/en-us/library/ee634400.aspx.
Be aware you should have a continuous date column to work with time intelligence functions. It's better you create a date dimension to work with that.
Ricardo
Thank you for the speedy reply Ricardo! I will try out your suggestion. : )
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 23 | |
| 22 | |
| 18 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 63 | |
| 44 | |
| 42 | |
| 40 | |
| 39 |