Filter Question

Jedi Master

Board Regular
Joined
Jun 10, 2024
Messages
70
Office Version
  1. 365
Platform
  1. Windows
Hello, I am trying to figure out how to bring in an adjacent name value based on multiple criteria with different size arrays. In the sheet below(Daily Report), I simply want to enter a date and have the equipment present a filtered list that meets the following criteria (see screenshot 2, PM Project Tracker): Date=entered date in (Daily Report), & row value in correct date column =1 (PM Project Tracker). Example: If 7/20/2024 were input, I should return Column1 Values for Rows 24 and 25, If 7/21/2024 were input, I should only return Column1 value for Row 24. The current formula I am using that is getting me close is: =IF(ISBLANK(C3),"",FILTER('PM Project Tracker'!B24:B37,SUMPRODUCT(('PM Project Tracker'!M24:UM37=1)*('PM Project Tracker'!M4:UM4='Daily Report'!C3))))..................the ('PM Project Tracker'!M24:UM37=1) is not taking into account the "=1" correctly and still displays both row 24 and 25 values regardless of either date above as input. Perhaps there is a different or better way to achieve this?
1718037877076.png
1718038181213.png
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Hi & welcome to MrExcel.
How about
Excel Formula:
=IF(C3="","",FILTER('PM Project Tracker'!B24:B37,XLOOKUP(C3,'PM Project Tracker'!M4:UM4,'PM Project Tracker'!M24:UM37)=1))
 
Upvote 1
Solution
Hi & welcome to MrExcel.
How about
Excel Formula:
=IF(C3="","",FILTER('PM Project Tracker'!B24:B37,XLOOKUP(C3,'PM Project Tracker'!M4:UM4,'PM Project Tracker'!M24:UM37)=1))
Thank you so much!!! I knew it was something simple I was missing, and thank you for the welcome and quick response!
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,223,162
Messages
6,170,431
Members
452,326
Latest member
johnshaji

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