index match with multiple criteria to create list

Bob_ipc

Board Regular
Joined
Oct 18, 2017
Messages
67
Office Version
  1. 365
Platform
  1. Windows
Hello,

I find myself needing some help on a problem I am having. I am looking to get a list from my Entry tab that meets two criteria, the two criteria are the date and Project Name. I am trying to use Index Match but have not yet gotten very far. Can anyone help?

Thanks in advance
 

Attachments

  • Entry tab.png
    Entry tab.png
    52.9 KB · Views: 6
  • Summary.png
    Summary.png
    52 KB · Views: 8

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Try
Excel Formula:
=FILTER(Entry!C4:C13,(Entry!A4:A13=B2)*(Entry!B4:B13=J6))
 
Last edited:
Upvote 0
@Cubist...double check the filter criteria ranges. Should be single columns. The OP may have to adjust the date and project cell addresses...difficult to be sure from the images.
 
Upvote 0
Try
Excel Formula:
=FILTER(Entry!C4:C13,(Entry!A4:A13=B2)*(Entry!B4:B13=J6))
Hey thanks for the quick response, however when adding this formula into A10 it just returns #VALUE!
 
Upvote 0
Hey thanks for the quick response, however when adding this formula into A10 it just returns #VALUE!
Can you post the sample sheets using XL2BB? As @KRice said, it's hard to tell the cell reference from the picture. Additionally, it might have to do with your date format.
 
Upvote 0
Also, if the FILTER function does not find any matches, you'll see an error, unless the error is trapped. Are you certain that something should be found?
 
Upvote 0
I am unfortunately not able to use XL2BB as it says it is not supported in protective view, not sure why it is saying this. My date format is just the standard short date format you can select and I double checked and the two criteria selected do exist it the Entry tab. I still can't get it t work. :unsure:
 
Upvote 0
Also, if the FILTER function does not find any matches, you'll see an error, unless the error is trapped. Are you certain that something should be found?
Could it be because I have Merged and Centered Cells?
 
Upvote 0
In your summary, your workday is 3/14. There's nothing in the entry tab that has the date 3/14. If you're certain that the references are correct the formatting isn't an issue, and there's nothing to return then try this...

Excel Formula:
=FILTER(Entry!C4:C13,(Entry!A4:A13=B2)*(Entry!B4:B13=J6),"Not found")
 
Upvote 0
Could it be because I have Merged and Centered Cells?
Yes...that's the point about the cell address. The image doesn't tell us if the project name is in B2 or C2...and date in J6 or K6. You may need to adjust those references in the formula to point to the correct cell(s).
 
Upvote 0

Forum statistics

Threads
1,215,072
Messages
6,122,966
Members
449,094
Latest member
Anshu121

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