Return a value for every instance in column based on lookup in another column

jmewebb

New Member
Joined
Dec 6, 2012
Messages
43
Office Version
  1. 365
Platform
  1. Windows
Return "yes" or "no" for every instance in Column A if specific text exists in Column B.

Example:


FruitColorDo any of the specific fruits contain Red?
AppleBrownYes
BananaYellowNo
PearGreenNo
AppleGreenYes
OrangeRedYes
AppleRedYes
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
I think this might do it, ugly as it is.

MrExcel posts20.xlsx
CDEF
2Red
3
4FruitColorDo any of the specific fruits contain Red?
5AppleBrownYes
6BananaYellowNo
7PearGreenNo
8AppleGreenYes
9OrangeRedYes
10AppleRedYes
Sheet10
Cell Formulas
RangeFormula
E5:E10E5=IF(SUM(--(C5=IF($D$5:$D$10=$F$2,$C$5:$C$10))),"Yes","No")
 
Upvote 1
Solution

Forum statistics

Threads
1,215,103
Messages
6,123,112
Members
449,096
Latest member
provoking

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