Forum Discussion

mork's avatar
mork
Helper V
10 years ago
Solved

Filter rows in query editor up to current date

I have a table that includes a column with the date of the first day of each week for the whole 2016. I want to filter the rows of that table inside query editor in a way that it will keep only the r...
  • Anonymous's avatar
    Anonymous
    10 years ago

    Short of typing in all the code in the advanced editor yourself...

     

    Hit the filter dropdown on the column and go to Date Filters, pick "Before...", then in the input box that pops up change that to "is before or equal to..." Type in today's date or whatever arbitrary date (this is just to get the editor to give you the code. You'll change this in a moment so the date doesn't really matter) and hit enter.

     

    Now go to the formula bar. You should see something that looks like:

    = Table.SelectRows(#"Replaced Value", each [startdate] <= #date(2016, 5, 9))

    Replace the date part of that with Date.From(DateTime.LocalNow())

     

    = Table.SelectRows(#"Replaced Value", each [startdate] <= Date.From(DateTime.LocalNow()))

    Now your query will always be filtered to the current day or earlier.