Posted: 2/19/2007 2:44:11 PM EDT
|
I want to round a cell with an existing formula in it. this is the formula: =+'Revenue Projection'!M1 and it shows as $8,541,403 (it is a result from another sheet) I want to round that in the same cell to the nearest $1000 ($8,541,000) Anybody know how to get this done? |
I was wondering what the '+' sign was there for anyway. It didn't make any difference either way.
You can do it in code or formatting. For formatting the order goes: positive;negative;zero;text; The following formatting does whole dollars, positive with a leading '+', negative red with a leading '-'. +$#,##0_);-$#,##0_) |