TheRealDeal
Technical User
How would I cut 5 cells from 1 row and paste them up 1 row and over 6 columns? Finally, how would I move back to cut-cell row and delete it?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub CutCells()
With Range(ActiveCell, ActiveCell.Offset(0, 4))
.Copy Destination:=Cells(ActiveCell.Row - 1, ActiveCell.Column + 8)
.EntireRow.Delete
End With
End Sub