I was able to gleen this from several sources to make this work for me. Would you have a better method?
Sub CutCells()
Range(ActiveCell, ActiveCell.Offset(0, 4)).Select
Selection.Cut Destination:=Cells(ActiveCell.Row - 1, ActiveCell.Column + 8)
ActiveCell.EntireRow.Delete
End Sub
Sub CutCells()
With Range(ActiveCell, ActiveCell.Offset(0, 4))
.Copy Destination:=Cells(ActiveCell.Row - 1, ActiveCell.Column + 8)
.EntireRow.Delete
End With
End Sub
How Can I Make My Code Run Faster? faq707-4105
Skip, [red]Be advised:[/red] The dyslexic, agnostic, insomniac, lays awake all night wondering... "Is there really a DOG?"
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.