Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
mork
Helper V
Helper V

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?

1 ACCEPTED SOLUTION
KHorseman
Community Champion
Community Champion

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.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

3 REPLIES 3
KHorseman
Community Champion
Community Champion

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.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




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

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.

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.