The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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