Link to home
Start Free TrialLog in
Avatar of finnstone
finnstone

asked on

find a word in a cell

in column B - i have the word i want to search

in column C - i have a long bunch of text

i want to search the word in column B in the column C

thanks for any formulas!
Avatar of Ryan Chong
Ryan Chong
Flag of Singapore image

use the Search formula:

Excel SEARCH Function
https://exceljet.net/excel-functions/excel-search-function
ASKER CERTIFIED SOLUTION
Avatar of Subodh Tiwari (Neeraj)
Subodh Tiwari (Neeraj)
Flag of India 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
Search function is to match text in case insensitive, to match text in case sensitive, you would need Find function.

Search:
=IF(ISERROR(SEARCH(B2,C2)),"Not Found", "Found")

Open in new window


Find:
=IF(ISERROR(FIND(B2,C2)),"Not Found", "Found")

Open in new window

29014419.xlsx