how to put signed integers in cell

  • Thread starter Thread starter Andrew
  • Start date Start date
A

Andrew

Hello,
I have a spreadsheet which has values of -10 to +10, and I'd like to
have the positive and negative signs show up. Does anyone know how to
format this?

thanks
 
example ranges: Range("A1") or SELECTION or Range("MyRange")

Range("A:A").NumberFormat = "+0;-0;0"
 
Back
Top