HockeyDiablo
Board Regular
- Joined
- Apr 1, 2016
- Messages
- 182
Code:
Sub macro1()
If IsEmpty(ActiveCell.Offset(0, 10).Value) = True Then 'checks to see if the field is blank first
ActiveCell.Cut Destination:=Cells(ActiveCell.Columns("j")) ' <-----heres where I go fuzzy, had it working from colB to J, but my colB will change
ActiveCell.Offset(1, 0).Select 'Just wanted to go to the next row
Else
MsgBox "There is data in Column J already"
End If
End Sub
I want any activecell "regardless of column" to be cut and pasted in column J, the row will remain the same.
Last edited: