+ Reply to Thread
Results 1 to 3 of 3

Excel 2007 : Finding a text with a string of text

  1. #1
    Registered User
    Join Date
    10-06-2011
    Location
    US
    MS-Off Ver
    Excel 365
    Posts
    34

    Finding a text with a string of text

    I have a list in column A and I want to search for a text in columns A string of text and return that text in column B. I used an IF(Search) statement and it worked for some rows but not all of them. how can i fix this?
    I attached a sample

    this is the IF statement in full:
    =IF(SEARCH("Pharma",$A2),"Pharma",IF(SEARCH("MD&D",$AO3),"MD&D",IF(SEARCH("Consumer",$A2),"Consumer")))

    thanks!
    Attached Files Attached Files

  2. #2
    Forum Expert Domski's Avatar
    Join Date
    12-14-2009
    Location
    A galaxy far, far away
    MS-Off Ver
    Darth Office 2010
    Posts
    3,950

    Re: Finding a text with a string of text

    Maybe:

    =IF(ISNUMBER(SEARCH("Pharma",$A2)),"Pharma",IF(ISNUMBER(SEARCH("MD&D",$A2)),"MD&D",IF(ISNUMBER(SEARCH("Consumer",$A2)),"Consumer","")))

    Not sure why you were testing AO3 in your original formula.

    Dom
    "May the fleas of a thousand camels infest the crotch of the person who screws up your day and may their arms be too short to scratch..."

    Use code tags when posting your VBA code: [code] Your code here [/code]

    Remember, saying thanks only takes a second or two. Click the little star to give some Rep if you think an answer deserves it.

  3. #3
    Registered User
    Join Date
    10-06-2011
    Location
    US
    MS-Off Ver
    Excel 365
    Posts
    34

    Re: Finding a text with a string of text

    thanks it worked! the AO3 was a from my copy and paste from the original data

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1