Need a little help with a simple sumif. I dont know why it keeps telling me the Sumif formula has a sintaxe error.

 Range("G & rw").Value = Application.WorksheetFunction.SumIfs(range("N:N"),Range("C & rw),Range("S:S")
It sais it expected a text separator were i input colum S:S.

This looks like a very simple problem, but i couldnt find anything alike here in the forum, and i cant solve it.



Sub Macro1()
Dim LR As Integer
Dim rw As Integer

LR = Range("C" & Rows.Count).End(xlUp).Row
    
    For rw = 2 To LR

        If Not IsEmpty(Range("C" & rw).Value) Then

    Range("G & rw").Value = Application.WorksheetFunction.SumIfs(range("N:N"),Range("C & rw),Range("S:S")

        End If

        If Range("G" & rw).Value = 0 Then
            Range("G" & rw).Value = "-"
            Range("F" & rw).Value = "N緌"
        ElseIf Range("G" & rw).Value <> 0 Then
            Range("F" & rw).Value = "Sim"
        End With
 
    Next rw
End Sub