I have dates in Column I (for the whole year) and i would like to paste them into specific cells in three different Columns A,B,C (ie A2, A5, A8, A11 etc) Same Numbers different letter for each respective column. I can get it to go from one cell to another but when i try to specify specific cells everything goes crazy. Any help would be appreciated.

This is what i have so far:

Sub Test()

Range("I1").Select
Selection.Copy
Range("A2").Select
ActiveSheet.Paste
End Sub