Link to home
Start Free TrialLog in
Avatar of cansevin
cansevin

asked on

Does the cell say "Cash" somewhere?

Column A has random text information in it. In Column B - I would like it to say "Cash" if the word "Cash" is included in Column A. If not, it says "Not Cash".
ASKER CERTIFIED SOLUTION
Avatar of Brian B
Brian B
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
If you are searching for the keyword Cash in a single cell, the formula suggested by Brian would return the desired output.

But if the Cash keyword is anywhere in column A, try this...

=IF(COUNTIF(A:A,"*cash*"),"Cash","Not Cash")

Open in new window