Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Dynamic Calendar with specific start date and end date: end of current year

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!

1 ACCEPTED SOLUTION
BobBI
Resolver III
Resolver III

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

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

Calendar(date(2017,1,1),date(year(today()),12,31))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
BobBI
Resolver III
Resolver III

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

Anonymous
Not applicable

Thank you thank you!!

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.