+ Reply to Thread
Results 1 to 4 of 4

Search for specific text in a row

  1. #1
    Registered User
    Join Date
    02-25-2009
    Location
    Philadelphia, PA
    MS-Off Ver
    Excel 2007
    Posts
    4

    Search for specific text in a row

    I'm trying to search for specific text in a row and output a certain text if it is found. Like searching for a match but a "contains text" match instead of a total match.

    I tried using "=IF(SUMPRODUCT(ISNUMBER(SEARCH("dog",A:A,))),"found,""notfound")"

    Any suggestions?
    Last edited by rudolphe; 01-24-2011 at 11:53 AM.

  2. #2
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Search for specific text in a row

    You have some parentheses issues and you need the double unary in front of ISNUMBER to convert from True/False to 1/0.

    =IF(SUMPRODUCT(--ISNUMBER(SEARCH("dog",A:A))),"found","notfound")
    Does that work for you?
    ChemistB
    My 2?

    substitute commas with semi-colons if your region settings requires
    Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
    If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  3. #3
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Search for specific text in a row

    Also

    =IF(COUNTIF(A:A,"*dog*"),"found","notfound")
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  4. #4
    Registered User
    Join Date
    02-25-2009
    Location
    Philadelphia, PA
    MS-Off Ver
    Excel 2007
    Posts
    4

    Re: Search for specific text in a row

    Both of those worked with a minor adjustment. I realized I was searching the entire range of the row instead of the individual cell. Changing it from "A:A" to "A:1" "A:2" and so on works. Thanks guys!

+ 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