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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
CarlsBerg999
Helper V
Helper V

Dynamic date table

Hi,

 

I'm having issues with my datetable in PQ. I'm trying to create a date table for 30 days in the past and 30 days to the future, calculated from today. For example today is 9.2021, so the Date table would be from 9.1.2021- 9.3.2021 (always 60 days).

 

My code is like this: 

 Source = Number.From(DateTime.LocalNow ())+ 30 - Number.From(#date(2020,01,01)),
#"Converted to Table" = List.Dates(#date(2020,01,01),Source,#duration(1,0,0,0)),

 

I can't seem to fix the start date. This will end up with 1.1.2020 to today +30 days. 

 

Any ideas?

1 ACCEPTED SOLUTION
Anonymous
Not applicable

let
    start = Date.From(Date.AddDays(DateTime.FixedLocalNow(),-30)),
    dates=List.Dates(start,60,#duration(1,0,0,0))
in
    dates

View solution in original post

1 REPLY 1
Anonymous
Not applicable

let
    start = Date.From(Date.AddDays(DateTime.FixedLocalNow(),-30)),
    dates=List.Dates(start,60,#duration(1,0,0,0))
in
    dates

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors