Well, this fix is ugly, but it'll work. For some reason I can't wrap my mind around how to get the Mod operator to work for this situation, even though it practically screams for it.
Public Sub jomili()
Dim i As Integer
Dim strLastMonth As String
With Sheets("Paste")
For i = 1 To .Cells(4, Columns.Count).End(xlToLeft).Column
If .Cells(4, i).Value = "Grand Total" Then
strLastMonth = .Cells(4, i - 1).Value
For j = 1 To 3
If Month(strLastMonth) + j > 12 Then
.Cells(4, i + j) = MonthName((Month(strLastMonth) + j) - 12)
Else
.Cells(4, i + j) = MonthName(Month(strLastMonth) + j)
End If
Next j
End If
Next i
End With
End Sub
Thanks for your patience with my original oversight.
Bookmarks