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 all,
I'm looking to create a table via DAX that has a range of 1/1/1900 - 12/31/2099, plus one additional date of 12/31/9999. Is this possible?
Solved! Go to Solution.
Hi,
This should do the trick:
DateTable =
UNION(
CALENDAR("01-01-1900", "12-31-2099")
, ROW(
"Date","31-12-9999"
)
)
Hope that helps!
Regards,
Tim
Proud to be a Super User!
Hi,
This should do the trick:
DateTable =
UNION(
CALENDAR("01-01-1900", "12-31-2099")
, ROW(
"Date","31-12-9999"
)
)
Hope that helps!
Regards,
Tim
Proud to be a Super User!
@garynorcrossmmc , you can do that, but then it will create a problem to mark it ar date table
union(calendar(date(1900,01,01), date(2099,12,31)), date(9999,12,31))