Please do not quote when you reply! Just reply will do.
I have tested it and it works.
Also use Option Explicit with the code to spot out a typo
Sub Test()
Dim I As Integer, lc As Long, AIlc As Long, str As String, ws1 As Worksheet, ws2 As Worksheet
Set ws1 = Sheets("AI")
Set ws2 = Sheets("sheet2")
lc = ws2.Cells(3, ws2.Columns.Count).End(xlToLeft).Column
With Sheets("AI")
AIlc = .Cells(2, Columns.Count).End(xlToLeft).Column
str = .Range(.Cells(2, AIlc), .Cells(366, AIlc)).Address
End With
For I = 1 To 12
ws2.Cells(2 + I, lc + 1) = Application.Evaluate("SUMPRODUCT((MONTH(AI!$B$2:$B$366)=" & I & ")*(AI!" & str & "))")
Next I
End Sub
Bookmarks