C
Connie
How do I convert a column of numbers from positive to
negative?
negative?
-----Original Message-----
Hi Connie
two ways
1.
type -1 in a cell somewhere & copy it
select your range and choose edit / paste special multiply
click Ok
2.
select your range
choose format / cells
choose custom
type a "-" in front of the formatting shown on the right hand side
hope this helps
Cheers
JulieD
.
-----Original Message-----
Put a -1 in a cell, copy it, select your range, go to edit>paste
special>multiply.
Note - this will also turn negatives into positives.
For a formula you can use a helper column with;
=IF(A1<0,A1,A1*-1)
.