+ Reply to Thread
Results 1 to 6 of 6

Function to trim first 10 characters off a string

  1. #1
    Registered User
    Join Date
    04-11-2012
    Location
    Nashville, TN
    MS-Off Ver
    Excel 2010
    Posts
    76

    Function to trim first 10 characters off a string

    Hello all,

    Is there a function that does the opposite of LEFT, where the specified string is reproduced without the first 10 characters?

    Example:

    1234567890apples

    becomes

    apples

    Thanks!

  2. #2
    Registered User
    Join Date
    12-23-2009
    Location
    Marlborough, MA, USA
    MS-Off Ver
    Excel 2003
    Posts
    1

    Re: Function to trim first 10 characters off a string

    Try this:

    =right(cell address,LEN(cell address)-10)

  3. #3
    Forum Guru MarvinP's Avatar
    Join Date
    07-23-2010
    Location
    Woodinville, WA
    MS-Off Ver
    Office 365
    Posts
    16,168

    Re: Function to trim first 10 characters off a string

    =Right(Len(A1)-10)
    Or
    =Mid(A1,11,100) 100 is just a big number...
    One test is worth a thousand opinions.
    Click the * Add Reputation below to say thanks.

  4. #4
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    2016
    Posts
    14,675

    Re: Function to trim first 10 characters off a string

    You can use REPLACE function to replace the first 10 characters with nothing

    =REPLACE(A1,1,10,"")
    Audere est facere

  5. #5
    Valued Forum Contributor
    Join Date
    05-08-2012
    Location
    Georgia, USA
    MS-Off Ver
    Excel 2003, 2010
    Posts
    811

    Re: Function to trim first 10 characters off a string

    Try either of these

    =right(A1,6)

    If the ending text is of unknown length, try this
    =MID(A1,11,LEN(a1)-10)

    Kirk
    Click on star (*) below if this helps

  6. #6
    Registered User
    Join Date
    04-11-2012
    Location
    Nashville, TN
    MS-Off Ver
    Excel 2010
    Posts
    76

    Re: Function to trim first 10 characters off a string

    I used WallyBackman's formula. Thanks everyone!

+ 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