This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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.
Solved! Go to Solution.
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
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @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
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @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?
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
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsThanks @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
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsCheck out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 32 | |
| 26 | |
| 23 | |
| 22 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 45 | |
| 28 | |
| 24 | |
| 22 |