Rounding Millions

  • Thread starter Thread starter Christine
  • Start date Start date
C

Christine

Hello,

How do you round dollars in million to one decimal place?
For example, $105,256,256 to $105.3

Thanks,
Christine
 
Christine,

If you want a value of 105.3 then use

=ROUND(A1,-5)/100000

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Christine, divide by 1,000,000 and then round to 1 decimal:

=ROUND(G7/10^6,1) where g7 is the value

good luck
 
Hi
and if you need it ONLY displayed this way (but leave the underlying
number untouched) use a custom format like
0.0,,
 

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