Custom Format

T

Trevor

How can I format $123,456 to display as $123,500.
(Negative numbers would be in parens and red.)

TIA.
 
G

Guest

Go to FORMAT / CELLS / NUMBER and select "Custom."
Add the following custom format in the "Type" field:
($* #,##0._);[Red]($* #,##0.)
 
T

Trevor

When I use that format, I get:
$ 123,456.
-----Original Message-----
Go to FORMAT / CELLS / NUMBER and select "Custom."
Add the following custom format in the "Type" field:
($* #,##0._);[Red]($* #,##0.)



-----Original Message-----
How can I format $123,456 to display as $123,500.
(Negative numbers would be in parens and red.)

TIA.
.
.
 
D

Domenic

Trevor said:
How can I format $123,456 to display as $123,500.
(Negative numbers would be in parens and red.)

TIA.

Hi Trevor,

I don't know if that can be done using Custom Format, but does this help?

Assuming A1 has your value:

=CEILING(A1,500)

Hope this helps!
 

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