i.e. column Q in a worksheet where values start in Q3 and they can at different rows in the column. I want to take the positive values in the column and flip them to negative values and take negative values and flip them to positive. I was thinking of using an If statement here.
sub macro4()
with thisworkbook
Set uftrad = .Worksheets("Output - Trad NP reformatted")
End With
uftrad.Activate
Range("q3").Activate
For i = 0 To 64
If ActiveCell.Value <> 0 Then
ActiveCell.Value * - 1
Else
ActiveCell.Offset(i, 0).Select
End If
End Sub
The above is not working (and I am sure the reasons would be glaringly obvious to most of you here) can you guys help me?