Im a newbie and help with vlookup for a keyword

hakimi

New Member
Joined
Apr 25, 2014
Messages
2
Hey I would really appreciate if someone could help with this. I'm trying to use vlookup to items from a master list that have the word "dress". THe formula that I am currently using is VLOOKUP("*"&E5&"*",'Overall Summary'!A5:D1427,2,FALSE)...where E5 is the word dress, "overall summary" is the master list. The problem I keep on encountering is that the formula is grabbing the same item every single time. Is there anyway I can have the formula research the list if it encounters a duplicate? Let me know if this doesn't make any sense. Any help would be great
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
The problem with VLOOKUP is that it will always pull the first thing it finds that meets your criteria ("*"&E5&"*", in this case). If you want to get different results, you have to give it different input.

To put it another way, it's like you typed the word "dress" into Google, and Google came back with 100,000 search results but they were all the exact same page. VLOOKUP is only interested in the first thing that matches.
 
Last edited:
Upvote 0
Hey I would really appreciate if someone could help with this. I'm trying to use vlookup to items from a master list that have the word "dress". THe formula that I am currently using is VLOOKUP("*"&E5&"*",'Overall Summary'!A5:D1427,2,FALSE)...where E5 is the word dress, "overall summary" is the master list. The problem I keep on encountering is that the formula is grabbing the same item every single time. Is there anyway I can have the formula research the list if it encounters a duplicate? Let me know if this doesn't make any sense. Any help would be great

What is your desired result (i.e. what do you want the formula to return)? There may be other ways of finding what you're looking for.
 
Upvote 0
If you are needing to know how many cells will contain the word dress in a string, you could use the following formula...
Code:
=SUMPRODUCT(--(ISNUMBER(SEARCH(E5,'Overall Summary'!A5:A1427))))
this would give you an idea of the number of duplicates.
 
Upvote 0
What is your desired result (i.e. what do you want the formula to return)? There may be other ways of finding what you're looking for.

Im trying to pull all of the items in my master list that have the word "dress" into a separate sheet.
 
Upvote 0

Forum statistics

Threads
1,215,327
Messages
6,124,292
Members
449,149
Latest member
mwdbActuary

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