Public Function SumLarge_MajP(ByVal nthLargest As Integer, ParamArray list() As Variant) As Double
Dim i As Integer
Dim j As Integer
Dim colSum As New Collection
Dim dbl As Double
For i = 0 To UBound(list)
If colSum.Count = 0 Then
colSum.Add list(i)
Else
For j = 1 To colSum.Count
If list(i) > colSum(j) Then
colSum.Add list(i), , j
Exit For
End If
If j = colSum.Count Then colSum.Add list(i)
Next j
End If
Next i
For i = 1 To nthLargest
dbl = dbl + colSum(i)
Next
SumLarge_MajP = dbl
End Function