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 rows up to the current date.

How can I do that inside the query editor?

  • 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.

4 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    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.

    • Mark_Timson's avatar
      Mark_Timson
      Helper I

      You Sir are a hero among men. This worked for me I was doing a filter in the Query to get data for each date >= TodaysDate

    • gvg's avatar
      gvg
      Post Prodigy

      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.


       

      To the current day and time, to be precise.

  • hoang_vaeco's avatar
    hoang_vaeco
    Regular Visitor

    can i use date import from one table ( one row, one collum) to filter data ?