+ Reply to Thread
Results 1 to 4 of 4

Find specific text at end of string

  1. #1
    Forum Contributor
    Join Date
    02-10-2007
    MS-Off Ver
    Excel 2010
    Posts
    293

    Find specific text at end of string

    Hello,

    I have a list of words

    dougsr
    dougjr
    dougII
    dougIII
    douglastname
    dougname
    etc.

    I want to search the list, and whenever it finds "sr","jr","II", or "III" at the end of the words in the list, to return:

    doug sr
    doug jr
    doug II
    doug III

    else put a blank.

    How can this be done?

    Thanks

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Find specific text at end of string

    Not the most extensible approach:

    =IF(AND(RIGHT(A1, {2,2,2,3}) <> {"SR","JR","II","III"}), A1, IF(RIGHT(A1,3)="III", LEFT(A1, LEN(A1)-3) & " III", LEFT(A1, LEN(A1)-2) & " " & RIGHT(A1, 2) ) )
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,699

    Re: Find specific text at end of string

    Another option, perhaps

    =REPLACE(A1,LEN(A1)-LOOKUP(2,1/(RIGHT(A1,LEN({"","II","sr","jr","III"}))={"","II","sr","jr","III"}),LEN({"","II","sr","jr","III"}))+1,0," ")

  4. #4
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Find specific text at end of string

    I recommend DLL's. That's what I meant about extensible.

+ 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