Need help with a Match / Vlookup type formula

squeakums

Well-known Member
Joined
May 15, 2007
Messages
854
Office Version
  1. 365
I have this data, it has too much details in one column. I'm trying to write a formula that will find only certain contents based on cell A on another tab. If it matches whats in one of those cells, then pull that name or details. How would I go about writing a formula for this?
I looked up something, but this one below isn't very helpful or I wouldn't understand how to vlookup the other cell and then if matched pull data from cell A?

=VLOOKUP("*"&val&"*",data,2,FALSE)
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Code:
=VLOOKUP("*"&"val"&"*",data,1,FALSE)

Code:
=VLOOKUP("*"&Sheet2!A1&"*",data,1,FALSE)
 
Last edited:
Upvote 0
That formula doesn't work for me. I need to look in an array column A on one sheet, and column A in another, if it matches (it won't match exactly) only partially, then pull from Archer Search Report, if it matches partically from the vlookup sheet.

=MATCH('Archer Search Report'!A:A,'vlookup sheet'!A:A,1)

I tried this, it gives errors.

Can you write up a vlookup partial formula?

Example:

Test - I found the ISami Here - burt

I want it to look at the entire column if it finds the text similar to this but not all of it, I want it to pull from the Archer Search Report, the normal name to take out - burt and - test, etc.
 
Upvote 0
Nevermind, I feel silly, I figured it out:

=IFERROR(VLOOKUP([@ReqEval],'vlookup sheet'!A:A,1,TRUE), "")
 
Upvote 0

Forum statistics

Threads
1,225,738
Messages
6,186,728
Members
453,368
Latest member
positivemind

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