+ Reply to Thread
Results 1 to 3 of 3

Delete trailing spaces & characters

  1. #1
    Forum Contributor
    Join Date
    04-30-2011
    Location
    wirral,england
    MS-Off Ver
    Excel 2010
    Posts
    148

    Delete trailing spaces & characters

    Hello All
    Please Login or Register  to view this content.
    I have a column of names as shown, some of which are followed by two spaces and characters ranging from one to three as shown,is it possible to construct a formula which will remove these trailing spaces and characters.
    Thanks for any help given.
    Last edited by bigband1; 03-08-2012 at 04:19 AM.

  2. #2
    Forum Expert Domski's Avatar
    Join Date
    12-14-2009
    Location
    A galaxy far, far away
    MS-Off Ver
    Darth Office 2010
    Posts
    3,950

    Re: Delete trailing spaces & characters

    Try: =TRIM(LEFT(A1,LEN(A1)-LEN(TRIM(RIGHT(SUBSTITUTE(A1," ",REPT(" ",50)),50)))))

    Dom
    "May the fleas of a thousand camels infest the crotch of the person who screws up your day and may their arms be too short to scratch..."

    Use code tags when posting your VBA code: [code] Your code here [/code]

    Remember, saying thanks only takes a second or two. Click the little star to give some Rep if you think an answer deserves it.

  3. #3
    Forum Expert Domski's Avatar
    Join Date
    12-14-2009
    Location
    A galaxy far, far away
    MS-Off Ver
    Darth Office 2010
    Posts
    3,950

    Re: Delete trailing spaces & characters

    Small correction to cope with entries with no additional characters:

    =IF(LEN(A1)-LEN(SUBSTITUTE(A1," ",""))>1,TRIM(LEFT(A1,LEN(A1)-LEN(TRIM(RIGHT(SUBSTITUTE(A1," ",REPT(" ",50)),50))))),A1)

    Dom

+ 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