Negative Numbers

  • Thread starter Thread starter alexm999
  • Start date Start date
A

alexm999

Whats the VB code to make numbers negative?
I need the following column negative:
AP9:AP3
 
Hi
one way: try something like the following
sub foo()
dim rng as range
dim cell as range
set rng = activesheet.range("AP9:AP39)
for each cell in rng
if cell.value>0 then
cell.value = -cell.value
end if
next
end sub
 
Try something like

Dim Rng As Range
For Each Rng In Range("AP9:AP39")
Rng.Value = Rng.Value * -1
Next Rng


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 
Back
Top