Rounding and dropping digits

  • Thread starter Thread starter Marissa
  • Start date Start date
M

Marissa

Hello,

Is there a way to round a number and than drop to only show a portion of it.
For example: 567,549 to appear as 568. Thank you.
 
Marissa said:
Is there a way to round a number and than drop to only show
a portion of it. For example: 567,549 to appear as 568.

If you have 567,549 in one cell (A1) and you want 568 in another cell, you
can do:

=round(A1/1000,0)

Similarly, if you have a formula in a cell (A1) and you want to change the
formula so that it displays only thousands:

=round((formula)/1000,0)

The parentheses around "formula" may or may not be needed, depending on the
formula.

But if you want the cell value to remain 567,549 and only appear as 568, I
believe you need a formatting option to do that, and I am not aware of any
that does.
 
Errata....

JoeU2004 said:
But if you want the cell value to remain 567,549 and only appear as 568, I
believe you need a formatting option to do that, and I am not aware of any
that does.

Duh, what Gord wrote, namely the custom format

#,##0,

Note the comma at the end. I missed it when I read Gord's posting. Also,
no need to round to thousands first.


----- original message -----
 
Marissa Sorry. Initially I read this as 567.549 instead of comma....

Gord has answered this..Cheers


If this post helps click Yes
 

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