how to put signed integers in cell

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
 
P

Patrick Molloy

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

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