+ Reply to Thread
Results 1 to 2 of 2

Find text in a cell range

Hybrid View

  1. #1
    Registered User
    Join Date
    02-18-2005
    Posts
    44

    Find text in a cell range

    I have a row of cells (A1 - Z1). There is text in only one of the cells. I am trying to come up with a formula that will look across the row and return only the text that is found in the populated cell.

    Ex:

    A B C D
    1 Dog
    2 Cat
    3 Bird
    4 Frog

  2. #2
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Find text in a cell range

    Assuming the others are blank and we're definitely talking strings (not numbers)

    =LOOKUP(REPT("Z",255),A1:Z1)

    if not, ie nulls, then you could try

    =INDEX(A1:Z1,MATCH("*?",A1:Z1,0))

+ 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