Searching text to see if it contains a value then returning a value

levy77

Board Regular
Joined
May 7, 2019
Messages
67
If cell A1 contains information from and cell in column C return value in column D at the same row as information.

Woolworths W7001 Sandy Bay2004United2001
Dr Jay2002
Sandy Bay Newsagent2003
W70012004
Coles2005

<tbody>
</tbody>

Thanks for your help!
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
The example is not clear, where do you want the formula?
You could explain again what you have, what data you want to find, where you want to find it and what result you want.
 
Upvote 0
If formula goes in cell D4 then
=vlookup("*"&C4&"*",A1:B1,2,0)

If in B1 then array formula
{=index(D1:D5,MAX((--ISNUMBER(FIND(C1:C5,A1)))*ROW(D1:D5))))}

To accept press Shift + Control + Enter
 
Upvote 0
Maybe...

B1
=IFERROR(LOOKUP(9.99E+307,SEARCH(C1:C5,A1),D1:D5),"Not found")

M.
 
Last edited:
Upvote 0
Thanks both Marcelo and Dante.

Just to clarify, I would like the formula to be in cell B1. I want to search A1 for any matches outlined in column C. If there is a match of some sort it would return the correlating cell (same row as match) in D of which there was a match in column C. This value would be shown in cell B1.

So for example with the above table, "W7001" is contained in "Woolworths W7001 Sandy Bay" so "2004" is returned to B1.

I have attached a spreadsheet to give you an example of what I'm trying to achieve.

Thanks for your help.

https://drive.google.com/open?id=1Lhs3zZHtmY8XAO4swbqKf6HSH7oGl1hv
 
Upvote 0
This works for when there is only one row of data in column A. However when I add a list of items in column A, the formula finds the first one correctly and then just drags that value down, it doesn't seem to want to search all the rows in column A. Any idea why?
 
Upvote 0
Try

B1 copied down
=IFERROR(LOOKUP(9.99E+307,SEARCH(C$1:C$5,A1),D$1:D$5),"Not found")

M.
 
Upvote 0

Forum statistics

Threads
1,214,830
Messages
6,121,835
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