Sub Xmas_Song()
Dim Holiday As Long
Dim IsOver As Single
On Error GoTo HappyNewYear
Do Until Holiday = IsOver
Range("A1").Value = "Excel rows, excel rows,"
Range("B1").Value = "Excel to the max"
Range("C1").Value = "Oh, what function it is to right"
Range("D1").Value = "In a one array offset sumproduct"
Range("E1").Value = ""
IsOver = IsOver + 1
If IsOver = 7 Then GoTo HappyNewYear
Loop
HappyNewYear:
End Sub