I would like to start at cell A2 and then select every 6th cell in that column. Next, I want to insert a cell and shift everything to the right.
This is what I have that works so far, but it's long and takes forever to type out:
Range("A2,A8,A14,A20,A26,A32,A38,A44,A50,A56,A62,A68,A74").Select
Selection.Insert Shift:=xlToRight
Please tell me there is a more simple expression to get the desired output.
Thanks.