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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I'm trying to make an calender where the minimm date is fixed and the max dat is comming from a table startingDate ([datumIngang]) this date in this calander may go to one year afther this date.
When i use this ill get an message:
An argument of function 'DATE' has the wrong data type or the result is too large or too small.
The data type of data is correct.
Solved! Go to Solution.
@Anonymous , Check this. I tested rest is working
DATE(YEAR(MAX(tablename[DatumIngang])) + 1, MONTH(MAX(tablename[DatumIngang])), DAY(MAX(tablename[DatumIngang])))
hope this date column
create a new measure using this if this is working
@Anonymous , Check this. I tested rest is working
DATE(YEAR(MAX(tablename[DatumIngang])) + 1, MONTH(MAX(tablename[DatumIngang])), DAY(MAX(tablename[DatumIngang])))
hope this date column
create a new measure using this if this is working