Formatting

  • Thread starter Thread starter Prixton
  • Start date Start date
P

Prixton

Hi,
In a column I want all the numbers to end with 000. The figures are coming
from other files and are sometimes with one, two or three 0:s
How can I format the cells so that the numbers always come with 000 in the
end?
Thanks in advance
 
Prixton, it's not clear what you mean here.

If you mean you want to round the number to the nearest 1000 eg 12345 to
appear a 12000 then assuming your number is in A1, in B1 enter

=INT(A1/1000)*1000

If what you mean is that you want 3 decimal places in each case (eg 12.345)
then format the cell as Number and select 3 decimal places.

Ian
 
No what I want is that all figures shall end with 000 that is 125000, 126000
and so on.
Is this possible?
 
It's not possible in the same cell, as far as I know, but if you have a
column next to your data, use the formula I sent below. This will round all
cells so that the last 3 digits are zero. Another way is to use
=ROUND(A1,-3), though it still needs another cell.

Ian
 

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

Similar Threads

Formatting numbers 2
Converting Phone Numbers 4
custom inputs 1
Simple conversion 4
Format a number in a scecial way 8
E+14 error 2
Find cell containing a letter 5
filtering for numbers ending in 000 3

Back
Top