VLookup or Index help?

Bobsie0202

New Member
Joined
Dec 2, 2021
Messages
4
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
HI,

I'm looking for a formula, I have a workbook and at current =PROPER(INDEX('V25 TRACKER'!H:H,MATCH(C15,'Cargo'!E:E,0))) use this formula so extract the info from a different tab. But I need to add another criteria

If column E on workbook 1 matches Column C on workbook 2 & If Column K on workbook 1 matches Cell B10 on workbook 2 then extract the data from column H and pull it through to workbook 2

I hope that makes sense. Basically if two names on diff workbooks match, if tow dates match to a specific cell. then extract the info
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Hi & welcome to MrExcel.
How about
Excel Formula:
=PROPER(filter('V25 TRACKER'!H:H,(C15=Cargo!E:E)*(B10=Cargo!K:K))
 
Upvote 0
Hi & welcome to MrExcel.
How about
Excel Formula:
=PROPER(filter('V25 TRACKER'!H:H,(C15=Cargo!E:E)*(B10=Cargo!K:K))
Thanks so much Fluff, that seemed to work. How would I copy that down on the sheet and 'B10' remains the same in each formula?
 
Upvote 0
You can lock it like
Excel Formula:
=PROPER(filter('V25 TRACKER'!H:H,(C15=Cargo!E:E)*(B$10=Cargo!K:K))
 
Upvote 0
You can lock it like
Excel Formula:
=PROPER(filter('V25 TRACKER'!H:H,(C15=Cargo!E:E)*(B$10=Cargo!K:K))
I can't thank you enough!! If I may if you have time, when there is nothing for the formula to pick up it says CALC! is there a way for it say say something else such as NA or not registered? Happy to leave it if not.
 
Upvote 0
How about
Excel Formula:
=PROPER(FILTER('V25 TRACKER'!H:H,(C15=Cargo!E:E)*(B$10=Cargo!K:K),"N/A"))
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,213,494
Messages
6,113,972
Members
448,537
Latest member
Et_Cetera

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