I thought that looked familiar. I answered a previous question and provided some code to avoid overwriting which I guess you didn't see. Atm you have entries around row 60 of your sheets which is throwing out anything and caused me to scratch my head for several minutes. Try this:
Sub Allocation()
Dim ws As Worksheet, rData As Range, n As Long, rCell As Range
Application.ScreenUpdating = False
With Sheets("Raw")
Set rData = .Range("A2", .Range("AG" & Rows.Count).End(xlUp))
End With
For Each rCell In rData.Columns(33).Cells
If WorksheetFunction.IsNA(rCell) Then
rCell.Select
MsgBox "New contract detected. Please identify asset class and update IMAP sheet before continuing."
GoTo line1
End If
Next rCell
For Each ws In Worksheets
With ws
If .Name Like "###" Then
With .Cells(Rows.Count, 1).End(xlUp)(2)
.Value = Sheets("Raw").Cells(2, 3).Value
.Offset(, 1).Resize(, 10).Formula = _
"=SUMPRODUCT((Raw!" & rData.Columns(1).Address & "=" & ws.Name & ")*(Raw!" & rData.Columns(33).Address & "=B2)*(Raw!" & rData.Columns(8).Address & "))"
.Offset(, 1).Resize(, 10).Value = .Offset(, 1).Resize(, 10).Value
End With
End If
End With
Next ws
line1:
Application.ScreenUpdating = True
End Sub
Bookmarks