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!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live 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
| User | Count |
|---|---|
| 51 | |
| 38 | |
| 33 | |
| 22 | |
| 19 |
| User | Count |
|---|---|
| 136 | |
| 101 | |
| 58 | |
| 36 | |
| 35 |