PQ filter to query todays date

rjmdc

Well-known Member
Joined
Apr 29, 2020
Messages
742
Office Version
  1. 365
Platform
  1. Windows
hi
i have a spreadsheet with a column of dates
at the moment ifiletr manually to keep the blanks and anything from today - 3 months
i created 2 separate queries ont todaysdate and drilled down and then one theree months drilled down
how can i pull in these queries to a PQ to use a filter keep blanks and >Three Months and <Today
filter on the sheet doesnt work because i can do between this date and that date but then i lose my blanks
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Something like this.

Power Query:
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    SR = Table.SelectRows(Source, each 
        let 
            today = DateTime.LocalNow(),
            minDate = Date.AddMonths(today,-3),
            x = [Dates] >= minDate and [Dates] <= today or [Dates] = null
        in 
            x
        )
in
    SR
 
Upvote 0

Forum statistics

Threads
1,225,562
Messages
6,185,678
Members
453,314
Latest member
amitojsd

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top