Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi Power BI Expert,
I have a date table in Power BI by using the Calculated Table. I get files daily in a folder and I manually change the date in Power BI daily.
For the example, I created a date table from 01st April 2023 to 17th Aug 2023. However, I got the file latest file today now I have to change the date from 17th Aug 2023 to 28th Aug 2023 in Power BI. If I will receive file tomorrow then again I will have to change date in a date table in Power BI.
Can you please advise how to solve this manual work in Power BI?
Thank You
Solved! Go to Solution.
pls try this
let
Source = List.Generate(()=>#date(2021,4,1),(x)=>x<=Date.From( DateTime.LocalNow()),(x)=>Date.AddDays(x,1)),
#"Converted to Table" = Table.FromList(Source, Splitter.SplitByNothing(), {"Date"}, null, ExtraValues.Error)
in
#"Converted to Table"
Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.
pls try this
let
Source = List.Generate(()=>#date(2021,4,1),(x)=>x<=Date.From( DateTime.LocalNow()),(x)=>Date.AddDays(x,1)),
#"Converted to Table" = Table.FromList(Source, Splitter.SplitByNothing(), {"Date"}, null, ExtraValues.Error)
in
#"Converted to Table"
Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!