Hi,
Give this a try
Sub MoveStuff()
Dim I As Integer
Range("R6:S65000").ClearContents
Range("R5") = "Date"
Range("S5") = "Value"
Range("R5:S5").Font.Bold = True
Range("R5:S5").HorizontalAlignment = xlCenter
Range("D6").Select
Do Until ActiveCell.Value = ""
For I = 1 To 12
ActiveCell.Range("A1:A31").Copy _
Destination:=Range("S65536").End(xlUp).Offset(1, 0)
ActiveCell.Offset(0, 1).Select
Next I
ActiveCell.Offset(31, -12).Select
Loop
Range("R6").Select
ActiveCell.FormulaR1C1 = "1/1/1990"
Range("R6").AutoFill Destination:=Range("R6:R735"), Type:=xlFillDays
Range("R6").Select
End Sub
Bookmarks