MFish
Board Regular
- Joined
- May 9, 2019
- Messages
- 76
Hi,
Here's my code..
I'm trying to get the row of information to copy to the very NEXT row down on the other WS, "Deleted Runs". I have a code around this that take the offset of information and deletes it, and moves the row of data underneath up, xlShiftUp.
Here's my code..
Code:
Range(ActiveCell, ActiveCell.Offset(0, 2000)).Copy Destination:=Worksheets("Deleted Runs") _
.Range("D2")
I'm trying to get the row of information to copy to the very NEXT row down on the other WS, "Deleted Runs". I have a code around this that take the offset of information and deletes it, and moves the row of data underneath up, xlShiftUp.