Well, I figured it out, Yeah! I researched every step along with trial and error. But, I'm still getting better at this the more I do it. Fun!
If ActiveCell.Value < 0 Then
ActiveCell.copy
ActiveCell.Offset(0, -1).Activate 'means same row and one col left
Selection.PasteSpecial paste:=xlPasteValues, _
Operation:=xlNone, SkipBlanks:=False, Transpose:=False
ActiveCell.copy
End If
ActiveCell.Offset(0, 1).Activate 'means same row and one col right
Selection.ClearContents
Dim cel As Range
For Each cel In Columns("J").SpecialCells(xlCellTypeConstants, 1) 'changes negative numbers to positive numbers in the entire column
cel.Value = Abs(cel)
Next
Range("D1").Select
Selection.ClearContents
Bookmarks