Help: How do I remove the space at the end of a number?

J

japorms

Guys,

This come up with me recently. How do I remove the space at the end of
number?

EX: 29.15space

I'm thinking of using the "Replace" from the Edit menu. I just can't
remember how to do it.

Can someone remember how to it?

I can't add the numbers because of the space.
 
G

Guest

Edit > Replace > type a space in the FindWhat: window and leave the
ReplaceWith: window blank > ReplaceAll.......

Vaya con Dios,
Chuck, CABGx3
 
O

Opinicus

japorms said:
This come up with me recently. How do I remove the space at the end of
number?
EX: 29.15space

If there is exactly one space at the end of the number, this will do it
(assuming the number is in A1):

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

Scoops

japorms said:
Guys,

This come up with me recently. How do I remove the space at the end of
number?

EX: 29.15space

H japorms

Type 1 in a cell

Copy the cell

Select your "spaced" numbers

Edit > Paste Special > Multiply > OK

Regards

Steve
 
G

Guest

Another thing.........I can only get a trailing space to exist if the value
is actually TEXT, so this would work....

=TRIM(A1)

And if you wanted to convert it to a number,

=TRIM(A1)*1

Vaya con Dios,
Chuck, CABGx3
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top