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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors