I just wrote a UDF to sum up a range based on whether or not the background is colored. I don't know if the UDF itself is written efficiently or not, but it seems to work. The code is as follows (there are two arguments; one is the range being summed, the other is a boolean. If TRUE, the UDF sums colored cells, if FALSE it sums non colored cells):

Function AddClrs(myRng As Range, Col As Boolean)
    Application.Volatile
    
    Dim cCel As Range
    Dim ColIndex As Integer
    Dim totCnt
    
    Select Case Col
        Case True
            ColIndex = 1
        Case False
            ColIndex = 0
    End Select
    
    For Each cCel In myRng
        If ColIndex = 1 Then
            If cCel.Interior.ColorIndex <> xlNone Then
                totCnt = totCnt + cCel.Value
            End If
        ElseIf ColIndex = 0 Then
            If cCel.Interior.ColorIndex = xlNone Then
                totCnt = totCnt + cCel.Value
            End If
        End If
    Next cCel
    AddClrs = totCnt
End Function
The problem I have is that when I use the formula in the spreadsheet, it doesn't update when I color new cells. It also doesn't update if I press F9. The only way to have it change is by physically double clicking in the cell, and pressing enter (basically reentering the formula). Is there anyway around this?