paulcherianc
Member
I have created a macro as follows:
Can you please help me to script this to VBA
Can you please help me to script this to VBA
Code:
Sub CopyPaste()
Sheets("Report Footer").Select
Range("A1:AA23").Select
Selection.copy
Sheets("PCS").Select ' - it can be a dynamic sheet
Range("J1").Select
Selection.End(xlDown).Select
Range("J13").Select '- it can be a dynamic cell
End Sub