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!View all the Fabric Data Days sessions on demand. View schedule
So I'm trying to create a YTD measure and this is :
Solved! Go to Solution.
Hi @DouweMeer,
In your first formula, we can only get the max year or the current row by max ( [INVOICE_DT] ). So we should update your formula as below.
Sales this year =
VAR _maxyear =
YEAR ( MAXX ( ALL ( yourTABLE ), [INVOICE_DT] ) )
RETURN
CALCULATE (
SUM ( 'Price_Realisation'[USD Conversion] ),
FILTER ( 'Price_Realisation', 'Price_Realisation'[YTD year] = _maxyear )
)
If any other issue, kindly share your sample data and excepted result to me, if you don't have confidential data? Please upload your file to One Drive and share the link here.
Regards,
Frank
Hi @DouweMeer,
In your first formula, we can only get the max year or the current row by max ( [INVOICE_DT] ). So we should update your formula as below.
Sales this year =
VAR _maxyear =
YEAR ( MAXX ( ALL ( yourTABLE ), [INVOICE_DT] ) )
RETURN
CALCULATE (
SUM ( 'Price_Realisation'[USD Conversion] ),
FILTER ( 'Price_Realisation', 'Price_Realisation'[YTD year] = _maxyear )
)
If any other issue, kindly share your sample data and excepted result to me, if you don't have confidential data? Please upload your file to One Drive and share the link here.
Regards,
Frank
That actually looks very logical. I notice more and more that even though DAX looks a lot like Excel, it isn't Excel :). Thanks.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!