Vlookup (or other function) to return data based on wildcard Match result

NFaraci

New Member
Joined
Aug 21, 2018
Messages
18
Hello,

I have a list of items I'm searching with wildcard against a much larger list, currently to see if there is at least one hit. Now I want to pull data from the first list based on the result, and I can't figure it out. I'll detail below.

ABCDEFG
1123 MainBlue789 Archer Blvd Apt 1TRUE
2456 NorthRed131 Turhune Ave Floor 2FALSE
3789 ArcherGreen123 Main St Suite 3000TRUE
4
5
6
7

<tbody>
</tbody>

At this time, the formula in E:E is an IF statement based on MATCH("*"&A1&"*",D:D,0). E1 is True as a valid Match was found for A3 in D:D, but now I want to return into F1 the value in B3 based on the Match between A3 & D1. Vlookup isn't helping me here because searching for the value of D1 in A:A is not going to return a result, that's why I used a wildcard Match from A to D in the first place.

I hope I didn't explain it poorly, everyone on here is always so helpful.

Thanks in advance.
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Try

F1 copied down
=IFERROR(INDEX(B$1:B$3,MATCH(TRUE,INDEX(ISNUMBER(SEARCH(A$1:A$3,D1)),0),0)),"Not found")

M.
 
Upvote 0

Forum statistics

Threads
1,215,419
Messages
6,124,796
Members
449,189
Latest member
kristinh

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