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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
When I was tryin to create YTD last year formula ,its getting anerror when it pulled to visual.
DAX:
Spent_Amnt_YTD_LY = VAR DataMaxDate =
CALCULATE (DATE(YEAR(max(DETAIL[CHECK_DATE]))-1,MONTH(MAX(DETAIL[CHECK_DATE])),DAY(MAX(DETAIL[CHECK_DATE]))))
RETURN
CALCULATE (
[INV AMT$], ALLSELECTED('DATE'),
DATESYTD(
INTERSECT (
VALUES ( 'DATE'[Date] ),
DATESBETWEEN ( 'DATE'[Date], BLANK (), DataMaxDate )
)
)
)
Solved! Go to Solution.
Hi @Anonymous ,
Wrong data type of the parameter in datesbetween() function.
Refer:
https://docs.microsoft.com/en-us/dax/datesbetween-function-dax.
If you can share some sample data and expected result, we might help you deal with the formula.
Best Regards,
Jay
Hi @Anonymous ,
Wrong data type of the parameter in datesbetween() function.
Refer:
https://docs.microsoft.com/en-us/dax/datesbetween-function-dax.
If you can share some sample data and expected result, we might help you deal with the formula.
Best Regards,
Jay