I am using this code to select a range going down a variable amount of rows.
Sub MoveRunningTotalColumn()
Range("A4").End(xlToRight).Offset(0, 2).Select
Range(ActiveCell, ActiveCell.End(xlDown)).Select
End Sub
What i want to do is cut the data in the range (and keep the formatting) and move all the data to the same row position but one column to the right.
There is always data in Row 4 which is why i used End(xlToRight).
Please can someone tell me how to do this.
TIA
Sub MoveRunningTotalColumn()
Range("A4").End(xlToRight).Offset(0, 2).Select
Range(ActiveCell, ActiveCell.End(xlDown)).Select
End Sub
What i want to do is cut the data in the range (and keep the formatting) and move all the data to the same row position but one column to the right.
There is always data in Row 4 which is why i used End(xlToRight).
Please can someone tell me how to do this.
TIA