+ Reply to Thread
Results 1 to 5 of 5

Finding characters in a string

  1. #1
    Forum Contributor
    Join Date
    03-14-2005
    Posts
    164

    Finding characters in a string

    Hi all,

    I need some way of locating the characters "D0" in a string and then starting at the "D" going to the right 8 characters.


    e.g.

    CLOSED - D01234DAF Regression Testing
    CLOSED D013456 Solution Management
    D09999DAA - Risk Analysis

    I want a formula that will retrieve the D01234DAF, D013456, D09999DAA from these three strings.
    The "D0" appears in different places, but will always be part of the string.

    I'm hoping for functions rather than VBA.
    The formula will be placed in an adjacetn column so for each row it will get the "D0" number from the adjacent cells.

    thanks in advance,
    Matt

    Can anyone suggest a formula that might work?

  2. #2
    Forum Expert
    Join Date
    09-09-2005
    Location
    England
    MS-Off Ver
    2007
    Posts
    1,500
    Well to start with you do not always want ot go right 8 digits for you example, I am assuming that there is always a space after your string. and this is what I use to select then end, if there is a space inyour string it will fail

    the following would work in b16

    =MID(A16,SEARCH("D0",A16),SEARCH(" ",A16,SEARCH("D0",A16))-SEARCH("D0",A16))

    regards

    Dav

  3. #3
    Registered User
    Join Date
    01-18-2004
    Posts
    15

    Smile Try this

    I hope it will help you.
    the string is in a1:

    =MID(A1,FIND("D0",A1),FIND(" ",MID(A1,FIND("D0",A1),255)))

  4. #4
    Forum Expert
    Join Date
    09-09-2005
    Location
    England
    MS-Off Ver
    2007
    Posts
    1,500
    both solutions will work an are as complicated as each other using 5 functions. find and search are basically the same, but find is case sensitive, so take your choice

    Regards

    Dav

  5. #5
    Forum Contributor
    Join Date
    03-14-2005
    Posts
    164
    thanks for that - it works perfectly.
    both ways! :-D

+ 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