cyclist101
New Member
- Joined
- Mar 12, 2018
- Messages
- 4
I have a spreadsheet that I need to update twice a month (continuously adding columns every month) but the last 9 columns need to stay the same the whole time, so I want to use the following code to copy a specific selection and paste it 9 columns before the end of my worksheet, but I can’t figure out how to tell it where to paste if the cell references of the last column will constantly be changing. Please advise.
Sub Macro4()
Columns("R:V").Select
Range("V1").Activate
Selection.Copy
ActiveCell.PasteSpecial Paste:=xlPasteAll
End Sub
Sub Macro4()
Columns("R:V").Select
Range("V1").Activate
Selection.Copy
ActiveCell.PasteSpecial Paste:=xlPasteAll
End Sub