I'm subtracting figures and I need to show whether the result is negative or positive.

Stumped as to how to make the '+' or '-' sign appear using cell formatting. Minus is automatic, I presume, but the positive I'm struggling with.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Use a custom number format for your cells, such as:

"+"0;"-"0;0

displays -1, 0, 1 as

-1, 0, +1

or

"+"0.00;"-"0.00;"No change"

displays -1, 0, 1 as

-1.00, No change, +1.00
link|improve this answer
2  
Actually the "" marks around the + - are not needed. Just use +0;-0;0 – chris neilsen Jun 28 '11 at 8:47
Therefore could you use +??.??;-??.??;??.??. Which I hope would allow for alignment and show the +/- symbols? – Mike Jun 28 '11 at 10:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.