Vlookup text with wildcards into text ranges

nhinx

New Member
Joined
Aug 25, 2016
Messages
40
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
ABCD
DogSmallDogOnly2
BigCatOnlyCat10

<tbody>
</tbody>

Dog=Vlookup("*" & A1 "*",Sheet1!A1:D3,4,False)

<tbody>
</tbody>
The formula above works fine and the answer is 2

BigCatOnly=Vlookup(A1,Sheet1!A1:D3,4,False)

<tbody>
</tbody>

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

Thanks
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
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,214,832
Messages
6,121,843
Members
449,051
Latest member
excelquestion515

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