Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.