Formula for finding a number in a cell containing multiple numbers

bhn319

New Member
Joined
Aug 3, 2011
Messages
3
Ex: Column F contains multiple cells & numerous numbers in each cell. Column A contains 1 number in each cell. I would like a formula that will search column F for one of the numbers listed in column A and indicate yes or no if found in another cell

Column A-------------Column F---------------- Column H
1 7055 ------7050, 7052, 7053, 7059, 7060
2 7056 ------7029, 7045, 7011, 7062, 7051
3 7059 ------7001, 7004, 7065, 7077, 7080
4 7062 ------7044, 7035, 7055, 7010, 7099
5 7063 ------7019, 7063, 7002, 7064, 7056 ---(formula needed)
6 7064
7 7065

Example I select Cell A4(7062) I want to search all of Column F to find A4(7062) and then indicate yes or no in a cell in column H
 
Last edited:

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Try this way
Excel Workbook
ABCDEFGH
1Column AColumn F
270557050, 7052, 7053, 7059, 7060Yes
370567029, 7045, 7011, 7062, 7051Yes
470597001, 7004, 7065, 7077, 7080Yes
570627044, 7035, 7055, 7010, 7099Yes
670637019, 7063, 7002, 7064, 7056Yes
77064Yes
87065Yes
Sheet9
Excel 2007
#VALUE!
Entered with Ctrl+Shift+Enter. If entered correctly, Excel will surround with curly braces {}.
 
Upvote 0
Ex: Column F contains multiple cells & numerous numbers in each cell. Column A contains 1 number in each cell. I would like a formula that will search column F for one of the numbers listed in column A and indicate yes or no if found in another cell

Column A-------------Column F---------------- Column H
1 7055 ------7050, 7052, 7053, 7059, 7060
2 7056 ------7029, 7045, 7011, 7062, 7051
3 7059 ------7001, 7004, 7065, 7077, 7080
4 7062 ------7044, 7035, 7055, 7010, 7099
5 7063 ------7019, 7063, 7002, 7064, 7056 ---(formula needed)
6 7064
7 7065

Example I select Cell A4(7062) I want to search all of Column F to find A4(7062) and then indicate yes or no in a cell in column H

Maybe:
=IF(ISNA(VLOOKUP("*" & A1& "*",$F$1:$F$7,1,FALSE)),"No","Yes")
 
Upvote 0
Assuming they are all 4 digit numbers, here's another option to consider.

Excel Workbook
ABCDEFGH
1
270557050, 7052, 7053, 7059, 7060Yes
370567029, 7045, 7011, 7062, 7051Yes
411117001, 7004, 7065, 7077, 7080No
570627044, 7035, 7055, 7010, 7099Yes
620207019, 7063, 7002, 7064, 7056No
77064Yes
87065Yes
9
Check Number Exists
 
Upvote 0

Forum statistics

Threads
1,224,603
Messages
6,179,850
Members
452,948
Latest member
UsmanAli786

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