+ Reply to Thread
Results 1 to 2 of 2

how can I eliminate the last character of a cell?

  1. #1
    brantty
    Guest

    how can I eliminate the last character of a cell?

    I have a database that was imported. Each cell in column A has the data and
    a space added at the end. I need a formula to create a new column with the
    data from Column A without the additional space.

    EX. Presently I have [AAA12345 ]
    I would like to show [AAA122345]

  2. #2
    Dave Peterson
    Guest

    Re: how can I eliminate the last character of a cell?

    If it's exactly one character to remove:
    =left(a1,len(a1)-1)

    If you wanted to get rid of all the leading/trailing/multiple embedded spaces:
    =trim(a1)

    If you wanted to get rid of all the spaces:
    =substitute(a1," ","")





    brantty wrote:
    >
    > I have a database that was imported. Each cell in column A has the data and
    > a space added at the end. I need a formula to create a new column with the
    > data from Column A without the additional space.
    >
    > EX. Presently I have [AAA12345 ]
    > I would like to show [AAA122345]


    --

    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