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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hello!
I am trying to create a dynamic calendar table with a start date of 01/01/2017 and the end date always the end of the current year, but I just keep getting it wrong. The one I use now goes to today only and I cant seem to update it properly. Any help would be VERY appreciated!
THANK YOU!
Solved! Go to Solution.
Hi Eden,
Try this DAX , Create 'new table' under modeling
Calender = CALENDAR(
Date(2017,01,01),
Date(YEAR(today()),12,31)
)
You can additional columns by using ADDCOLUMN() function or just by adding new column (Right click--> New column) in the Calendar directly
Hope if would help
Thanks
Sukhi
Hi Eden,
Try this DAX , Create 'new table' under modeling
Calender = CALENDAR(
Date(2017,01,01),
Date(YEAR(today()),12,31)
)
You can additional columns by using ADDCOLUMN() function or just by adding new column (Right click--> New column) in the Calendar directly
Hope if would help
Thanks
Sukhi
Thank you thank you!!