Rounding up numbers into millions

G

Guest

Is there a preset format option that would take off 3 or 6 decimal places (to
show a number in thousands or millions), or do I need to create a calculation?
 
G

Guest

Are you just wanting to drop the decimal places? So for example show 1234
versus 1234.567 or even 1234.789564?

If so:

Format(12345.345,"#")

would give you: 12345

-Steve
 
G

Guest

No - I mean displaying 36,555,343 as 37 or 36.6.

Steve Huff said:
Are you just wanting to drop the decimal places? So for example show 1234
versus 1234.567 or even 1234.789564?

If so:

Format(12345.345,"#")

would give you: 12345

-Steve
 
G

Guest

You'd have to do part calculation part function:

Round(36555343*.000001,1) would give you 36.6

You can see from there how to get 37 and so forth...
 

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