how to insert a permanent + sign??

  • Thread starter Thread starter cnote
  • Start date Start date
C

cnote

Can anyone tell me how you insert a "+" sign in a cell that contains
formula, and make it permanently stay in the cell with the answer? Fo
example, I would like for my cell once the formula is completed and th
answer is returned in the cell to read "+60" or "-60". I can't find an
options for this, and I can't figure out how to write a macro/vba t
make it do this. Can anyone help??
 
Hi,

Go to Format->Cells->Number->Custom and paste this format within the format
text box:

+_-* #,##0_-;-* #,##0_-;_-* "-"_-;_-@_-

Regards,
A
 
This format must help you to display + sign for positive numbers, - sig
for negative numbers and no sign for zero. If you want to displa
decimals, add as many zeros after a decimal point. e.g
+0.00;-0.00;0.0
 
Back
Top