Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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.