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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi,
We have a YTD measure as follows which works perfectly:
Solved! Go to Solution.
@willatkinson Your measure uses TODAY() which gives a fixed date, so it returns the same value regardless of the visual context. To make it work month-by-month in a visual, you need to use the date context from your visual instead of TODAY().
Replace with this:
Count of Case reference Previous YTD =
CALCULATE(
COUNTA('Table'[Case reference]),
FILTER(
ALL('DDT'[Date (DDT)]),
YEAR('DDT'[Date (DDT)]) = YEAR(MAX('DDT'[Date (DDT)])) - 1 &&
'DDT'[Date (DDT)] <= DATE(
YEAR(MAX('DDT'[Date (DDT)])) - 1,
MONTH(MAX('DDT'[Date (DDT)])),
DAY(MAX('DDT'[Date (DDT)]))
)
)
)
How this works:
MAX('DDT'[Date (DDT)]) gets the current date from your visual's filter context
To use in a visual:
This replaces the static TODAY() with dynamic date context from your visual.
Best regards!
PS: If you find this post helpful consider leaving kudos or mark it as solution
Hi,
Assuming you have a Calendar Table and you have a year slicer and you have months dragged to a Table/Matrix visual
C = COUNTA('Table'[Case reference])
YTD C = calculate([C],DATESYTD(Calendar[Date],"31/12"))
YTD C (PY) = calculate([YTD C],samperiodlastyear(calendar[Date]))
Hope this helps.
Hi @willatkinson,
I would also take a moment to thank @Mauro89 , for actively participating in the community forum and for the solutions you’ve been sharing in the community forum. Your contributions make a real difference.
I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions.
Regards,
Community Support Team.
Hi @willatkinson,
I hope the above details help you fix the issue. If you still have any questions or need more help, feel free to reach out. We are always here to support you.
Regards,
Community Support Team.
Hi,
Assuming you have a Calendar Table and you have a year slicer and you have months dragged to a Table/Matrix visual
C = COUNTA('Table'[Case reference])
YTD C = calculate([C],DATESYTD(Calendar[Date],"31/12"))
YTD C (PY) = calculate([YTD C],samperiodlastyear(calendar[Date]))
Hope this helps.
Hi @willatkinson,
you can try if these two measures work for your case. Check them with your actual data.
Option 1: Using SAMEPERIODLASTYEAR
Count of Case reference Previous YTD =
CALCULATE(
COUNTA('Table'[Case reference]),
DATESYTD(SAMEPERIODLASTYEAR('DDT'[Date (DDT)]))
)
Option 2: Using DATEADD
Count of Case reference Previous YTD =
CALCULATE(
[Count of Case reference YTD],
DATEADD('DDT'[Date (DDT)], -1, YEAR)
)
Best regards!
PS: If you find this post helpful consider leaving kudos or mark it as solution
Hi @Mauro89,
This didn't give me the figure I expected, but the following did:
CALCULATE(
COUNTA('Table'[Case reference]),
FILTER(
ALL('DDT'),
'DDT'[Date (DDT)] >= DATE(YEAR(TODAY()) - 1, 1, 1)
&& 'DDT'[Date (DDT)] <= DATE(YEAR(TODAY()) - 1, MONTH(TODAY()), DAY(TODAY()))
)
)
This gives me a year to date figure for the previous year, but I can only see a single figure, where I would like to see a month by month visual, how would this work?
@willatkinson Your measure uses TODAY() which gives a fixed date, so it returns the same value regardless of the visual context. To make it work month-by-month in a visual, you need to use the date context from your visual instead of TODAY().
Replace with this:
Count of Case reference Previous YTD =
CALCULATE(
COUNTA('Table'[Case reference]),
FILTER(
ALL('DDT'[Date (DDT)]),
YEAR('DDT'[Date (DDT)]) = YEAR(MAX('DDT'[Date (DDT)])) - 1 &&
'DDT'[Date (DDT)] <= DATE(
YEAR(MAX('DDT'[Date (DDT)])) - 1,
MONTH(MAX('DDT'[Date (DDT)])),
DAY(MAX('DDT'[Date (DDT)]))
)
)
)
How this works:
MAX('DDT'[Date (DDT)]) gets the current date from your visual's filter context
To use in a visual:
This replaces the static TODAY() with dynamic date context from your visual.
Best regards!
PS: If you find this post helpful consider leaving kudos or mark it as solution
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 47 | |
| 30 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 88 | |
| 73 | |
| 38 | |
| 26 | |
| 25 |