Find word within cell & put value in adjacent
Solved/Closed
Related:
- Formula to find word in cell excel
- How to find a word in an excel cell - Best answers
- Find particular word in excel cell - Best answers
- Student position formula in excel ✓ - Office Software Forum
- Number to words in excel formula - Guide
- Excel cell color formula - Guide
- How to calculate position (1st,2nd,3rd) in excel....? - Excel Forum
- Calculation of positions in excel ✓ - Excel Forum
10 responses
mubashir aziz
Posts
190
Registration date
Sunday April 12, 2009
Status
Member
Last seen
February 16, 2010
166
Updated on Dec 21, 2018 at 04:21 AM
Updated on Dec 21, 2018 at 04:21 AM
Hi,
Suppose your data is from A1 to A100 or onward. Then in B1, copy this formula and drag it down:
Hope, it will help!
Suppose your data is from A1 to A100 or onward. Then in B1, copy this formula and drag it down:
=IF(ISERROR(SEARCH("*apple*",A1,1)),"","A ")
Hope, it will help!
Sep 3, 2009 at 05:04 PM
the formula [=IF(OR(ISERROR(SEARCH("*apple*",a1,1)),"","A ")] works great, but what if I want to use multiple criteria with wild characters.
EG: *apple* = A
*orange* = B
*grapes* = C
if any thing other than apple, orange or grapes, it should show 'D'
Hope you would respond.
Thanks in advance
Configuration: Windows XP Internet Explorer 7.0
Sep 4, 2009 at 12:58 AM
=IF(ISERROR(SEARCH("*apple*",A1,1)),IF(ISERROR(SEARCH("*orange*",A1,1)),IF(ISERROR(SEARCH("*grapes*",A1,1)),"","C"),"B"),"A")