filter with blanks

dmheller

Board Regular
Joined
May 26, 2017
Messages
156
Office Version
  1. 365
I have data like this.
it is a table.
I want to filter out a date or month or anything but when i do, it leave out the blanks. So if i filter date 1/3/24 i get only row 12.
Is there a way i can filer 1/3/24 and get row 12-16 without putting 1/3/24 in each row?
1724963262079.png
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
Hello, try:

Excel Formula:
=LET(
date,A5:A33,
description,B5:B33,
a,SCAN("",date,LAMBDA(a,b,IF(b<>"",b,a))),
FILTER(description,(a=DATE(2024,3,1))*(description<>""),""))

And you might wanna replace DATE(2024,3,1) by a cell reference with the date you are interested in...
 
Upvote 0
Solution

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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