Find word within cell & put value in adjacent
Solved/Closed
        Related:         
- Which formula am i going to use if i want to know if the text "bacon" appears in the content of cell a1 ?
- If cell contains specific text - Best answers
- Formula to find word in cell excel - Best answers
- Efootball 2022 downloadable content - Download - Sports
- Need for speed: most wanted 2005 downloadable content - Download - Racing
- Lava a1 reset code ✓ - Phones, PDA & GPS Forum
- Based on the cell values in cells b77 ✓ - Excel Forum
- Insert the current date and time in cell a1 ✓ - 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")