Forum Discussion

1Kash's avatar
1Kash
New Member
2 years ago
Solved

Query Last 100 Days for Past 3 Years

Greetings All,

 

I'm looking to set up a daily query that will pull the last 100 days from TODAY, for the current-year, prior-year and prior-prior-year periods.

 

The date ranges would look something like this from today's date December 7th:

 

PPYPYCY
12/7/202112/7/202212/7/2023
8/29/20218/29/20228/29/2023

 

I'm using Power Bi Desktop and have a daily scheduled refresh set-up

 

The code below is what I use to pull the last 100 days each morning, but not sure how to set up for the prior year periods.

= Table.SelectRows(#"Removed Columns", each Date.IsInPreviousNDays([close_date], 100))

 

Thanks in advance!

  • Construct the periods by yourself (take 5 days for example)

    let
        Source = let today=Date.From(DateTime.LocalNow()) in List.Accumulate({0..2}, {}, (s,c) => s & List.Dates(Date.AddYears(today, -c), 5, #duration(-1,0,0,0)))
    in
        Source

2 Replies

  • Construct the periods by yourself (take 5 days for example)

    let
        Source = let today=Date.From(DateTime.LocalNow()) in List.Accumulate({0..2}, {}, (s,c) => s & List.Dates(Date.AddYears(today, -c), 5, #duration(-1,0,0,0)))
    in
        Source

    • 1Kash's avatar
      1Kash
      New Member

      This worked great. Thanks a lot, ThxAlot