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
Abhaykumar
Microsoft Employee
Microsoft Employee

Generating calendar for last 30 days in DAX

We need to generate a calender containing the dates for last 30 days in DAX. I cant seem to find a good solution for this. How do I pass correct parameters to the CALENDAR method?

1 ACCEPTED SOLUTION
Phil_Seamark
Microsoft Employee
Microsoft Employee

HI @Abhaykumar

 

Please try the following code to create a calculated table.

 

Date Table = CALENDAR(
                        TODAY()-30,
                        TODAY()
                       )

To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

View solution in original post

2 REPLIES 2
Phil_Seamark
Microsoft Employee
Microsoft Employee

HI @Abhaykumar

 

Please try the following code to create a calculated table.

 

Date Table = CALENDAR(
                        TODAY()-30,
                        TODAY()
                       )

To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

can we do it for maximum date availabe in data instade of today 

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.