Vlookup text with wildcards into text ranges

nhinx

Board Regular
Joined
Aug 25, 2016
Messages
55
Office Version
  1. 2010
Dear Excel Expert,

I been searching for Vlookup function in google for the partial text with a wild cards but it always give me the formula looking for a partial text looking up into ranges with wild cards. My question is vice versa. Example I need to Vlookup the certain text with wild card below[TABLE="width: 800"]
<tbody>[TR]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[/TR]
[TR]
[TD]Dog[/TD]
[TD][/TD]
[TD]SmallDogOnly[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]BigCatOnly[/TD]
[TD][/TD]
[TD]Cat[/TD]
[TD]10[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]

[TABLE="width: 500"]
<tbody>[TR]
[TD]Dog[/TD]
[TD]=Vlookup("*" & A1 "*",Sheet1!A1:D3,4,False)[/TD]
[/TR]
</tbody>[/TABLE]
The formula above works fine and the answer is 2

[TABLE="width: 500"]
<tbody>[TR]
[TD]BigCatOnly[/TD]
[TD]=Vlookup(A1,Sheet1!A1:D3,4,False)[/TD]
[/TR]
</tbody>[/TABLE]

How can I express the Vlookup formula above without changing A1 into a word "Cat"

Thanks
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
This array formula:

=INDEX($D$1:$D$2,MATCH(TRUE,ISNUMBER(SEARCH($C$1:$C$2,A2)),0))

Enter it CTRL-SHIFT-ENTER

Bear in mind it can produce unexpected results depending on the data. If you want it case sensitive:

=INDEX($D$1:$D$2,MATCH(TRUE,ISNUMBER(FIND($C$1:$C$2,A2)),0))
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,176
Members
453,021
Latest member
Justyna P

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