Moving Decimal Places Up

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello everyone,

I have got a list of values e.g. 61025, 68653

I want these to be shown as 610.25, 686.53.

Is there a function that I can use to achieve this?

Regards,
Beth
 
Hi
Type 100 in a blank cell and copy it. Select your range and then Edit|Paste
Special|Divide.
Save a copy before you start!
 
In an empty cell enter .01. Copy that cell, select all the values you want
to change, use Edit>Paste Special>Multiply
 
I couldn't get the other suggestions to work correctly as they are using
calculations to move the decimal which will cause some rounding issues,
therefore not giving you what you want. I'm sure they have another
alternative that won't skew the numbers. However, you may try using a
formula.

Assuming your number is in A1.

=LEFT(A1,(LEN(IA1)-2))&"."&RIGHT(A1,2)


If all the numbers are
 

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

Back
Top