This is probably a dumb question...but how does one add a worksheet function via VBA when it contains " ".....such as the below

For Counter = 2 To (CountCallsAgainst + 1)

With wsAdd
.Cells(Counter, 1).Value = myCallsAgainst((Counter - 1), 1)
.Cells(Counter, 2).Value = myCallsAgainst((Counter - 1), 2)
.Cells(Counter, 3).Value = myCallsAgainst((Counter - 1), 3)
.Cells(Counter, 5).Value = "=SUMIFSEXP,NUM,A2,CUSIP,"371488AG2")"

End With

Next Counter

The below line keeps giving me errors

.Cells(Counter, 5).Value = "=SUMIFSEXP,NUM,A2,CUSIP,"371488AG2")"

Thank you