Function CombProdSum(rngNumbers As Range) As Double
Dim rngCell As Range
Dim iNum As Integer
Dim vaNum() As Variant
Dim i As Integer
'Read the values of all cells into a variant array
iNum = rngNumbers.Cells.Count
ReDim Preserve vaNum(1 To iNum)
i = 0
For Each rngCell In rngNumbers.Cells
i = i + 1
vaNum(i) = rngCell.Value
Next rngCell
'Calculate the sum of all combinations of products of iNum-1 values
CombProdSum = CSP(vaNum)
End Function
Private Function CSP(vaData As Variant) As Double
Dim i As Integer, j As Integer
Dim iToSkip As Integer
Dim iIndex As Integer
Dim iNum As Integer
Dim dProd As Double
iNum = UBound(vaData) 'assuming base 1 array
CSP = 0
For iToSkip = 1 To iNum
iIndex = iToSkip
dProd = 1
For i = 1 To iNum - 1
j = (iIndex Mod iNum) + 1
Debug.Print j
dProd = dProd * vaData(j)
iIndex = iIndex + 1
Next i
CSP = CSP + dProd
Next iToSkip
End Function
|