View Single Post
  #1   Report Post  
Danny
 
Posts: n/a
Default Resize Range - Macro

Hi,

Please write a macro to CHANGE number of rows 3 to a variable range
(end.xlDown) on the macro below.

Sub GotToRangeResizeCopyPaste()

Application.Goto Reference:="MyRange"
ActiveCell.Resize(3, 10).Select
Selection.Copy
Range("OtherRange").Select
ActiveSheet.Paste

End Sub

Thanks