+ Reply to Thread
Results 1 to 4 of 4

Find text string in column?

  1. #1
    none
    Guest

    Find text string in column?

    I need a formula to search through a column and find the text "ACCOUNT".
    Possibly print TRUE in the adjacent column.

    Any help is greatly appreciated.

    Greg



  2. #2
    Dave Peterson
    Guest

    Re: Find text string in column?

    You could use a formula like:

    =isnumber(search("account",a1))
    and drag down the column.

    True means it found it. False means nope.

    none wrote:
    >
    > I need a formula to search through a column and find the text "ACCOUNT".
    > Possibly print TRUE in the adjacent column.
    >
    > Any help is greatly appreciated.
    >
    > Greg


    --

    Dave Peterson

  3. #3
    Dave O
    Guest

    Re: Find text string in column?

    If you want to search in column A, for instance, copy this formula into
    cell B1
    =IF(FIND("Account",A1,1)>0,TRUE,FALSE)
    and copy it to remaining cells in column A.


  4. #4
    Dave Peterson
    Guest

    Re: Find text string in column?

    And one of the differences between DaveO's response and mine is that I used
    =search() and DaveO used =Find().

    =search() is not case sensitive Account, ACCouNT, AccoUnt, account would all be
    accounted for <bg>.

    DaveO used =find(). That is case sensitive. He'll only find Account.

    What you use will depend on what you really want.

    none wrote:
    >
    > I need a formula to search through a column and find the text "ACCOUNT".
    > Possibly print TRUE in the adjacent column.
    >
    > Any help is greatly appreciated.
    >
    > Greg


    --

    Dave Peterson

+ 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