i have this code that needs to be loop nth time..
im a newbie in VB so dont know how to change the value of A2:D6 to increment to 5.. so it will be A7:D11 for the next loop. as well as where to paste E2 to E7.
Code:
Sub Macro12() ' ' Macro12 Macro ' ' Range("A2:D6").Select Application.CutCopyMode = False Selection.Copy Range("E2").Select ActiveSheet.Paste Range("A7:D11").Select Application.CutCopyMode = False Selection.Copy Range("E7").Select ActiveSheet.Paste Range("E15").Select End Sub
Comment