Looking for a VBA routine that will allow the same copy and paste procedure to happen repeatedly while moving through a long worksheet of data. I'm interested in copying a small area of cells that repeat through out a worksheet and are the same distance away from the next selection area I need.
Sheets("Excel_Essex_Helos_Dump_80520_12").Select
Range("B6").Select
Selection.Copy
Sheets("Sheet1").Select
Range("B4").Select
ActiveSheet.Paste
Sheets("Excel_Essex_Helos_Dump_80520_12").Select
Range("D6").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Sheet1").Select
Range("B5").Select
ActiveSheet.Paste
Sheets("Excel_Essex_Helos_Dump_80520_12").Select
Range("F6").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Sheet1").Select
Range("B6").Select
ActiveSheet.Paste
Sheets("Excel_Essex_Helos_Dump_80520_12").Select
ActiveWindow.SmallScroll Down:=24
Range("A47:A73").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Sheet1").Select
Range("B7").Select
ActiveSheet.Paste
So basically on the next go around I want to select "B79" and then "D79" and "F79" etc. Each next cell will be 73 cells away from the previous one. Is there a routine I can create that adds 73 to the range and repeats until finished?