PQ filter to query todays date

rjmdc

Well-known Member
Joined
Apr 29, 2020
Messages
695
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

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
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,223,702
Messages
6,173,932
Members
452,539
Latest member
delvey

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