I search everywhere but unfortunately i cant find the solution. So what i have is range "K4:M408". wht i m doing is looping but i want to change range. i will start from Range(K4:M7) and then (K8:M11) and then (K12:K15). please help me how can i do it
Code:
Sheets("Sheet1").Select
Range("K4:M7").Select
Selection.Copy
Sheets("sheet1").Select
Range("A2").Select
ActiveSheet.Paste
i have some macro here,it will run and then now i want to repeat exactly samething again but want to change the range only.
Range("K8:M11").Select
Selection.Copy
Sheets("sheet1").Select
Range("A2").Select
ActiveSheet.Paste
i ahve some macro here and then now i want to repeat exactly samething again but want to change the range only.
Range("K12:M15").Select
Selection.Copy
Sheets("sheet1").Select
Range("A2").Select
ActiveSheet.Paste