View Single Post
  #2  
Old June 2nd, 2010, 09:34 AM posted to microsoft.public.excel.worksheet.functions
Pete_UK
external usenet poster
 
Posts: 8,780
Default How do I delete a space at the end of an amount or text

You could do this:

=LEFT(A1,LEN(A1)-1)

assuming the data is in A1. This will return a text value - if you
want a number then do this:

=--LEFT(A1,LEN(A1)-1)

Hope this helps.

Pete

On Jun 2, 9:05*am, Maureen wrote:
How do I delete a space at the end of an amount or text?