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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
ketan10
Advocate III
Advocate III

Dynamic Date Calendar Using Power Query

I need to create a Date column to dynamically update itself daily.


Ex: Using maybe Power Query, I need a column with a list of dates from
(Today-30 days) TO (Today + 90 days).

These dates would change daily.This means that if:
Today = 31-07-2017

Then I need to create a "Dynamic" column which gives me "ALL" the dates between
01-07-2017 (ie Today - 30 days)
--- TO---
29-10-2017 (ie Today + 90 days)

These dates should change dynamically as the Day changes.

2 ACCEPTED SOLUTIONS
MFelix
Super User
Super User

Hi @ketan10,

 

Create the table in the modeling view  the DAX formula will be:

 

Table = CALENDAR(TODAY()-30,TODAY()+90)

Should give the expected result.

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português





View solution in original post

Hi @ketan10,

 

Try using this formula:

 

Week_End_Date = DATEADD ( 'Table'[Date], ( 7 - WEEKDAY ( 'Table'[Date], 1 ) ), DAY )

If you need the end of the week be different from Sunday replace the 1 to 2 or 3.

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português





View solution in original post

5 REPLIES 5
Anonymous
Not applicable

Hi @ketan10

 

Can you tell more about why you need this or what you are trying to achieve with it? And if you insist on using Power Query?

MFelix
Super User
Super User

Hi @ketan10,

 

Create the table in the modeling view  the DAX formula will be:

 

Table = CALENDAR(TODAY()-30,TODAY()+90)

Should give the expected result.

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português





Thanks @MFelix this works. But I also need to have a End Of Week column for these dates. Could not find a function for that in DAX.

Hi @ketan10,

 

Try using this formula:

 

Week_End_Date = DATEADD ( 'Table'[Date], ( 7 - WEEKDAY ( 'Table'[Date], 1 ) ), DAY )

If you need the end of the week be different from Sunday replace the 1 to 2 or 3.

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português





Real Deal ! Thanks a lot 🙂 @MFelix

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.