i have this so far
Function xyz(a As Range) As Variant
Dim VArray() As Double
r = a.Rows.Count
c = 2
ReDim VArray(1 To r, 1 To c)
Dim top As Integer
Dim bottom As Integer
Dim score As Integer
For r = LBound(VArray, 1) To UBound(VArray, 1)
VArray(r, 1) = a(r, 1)
VArray(r, 2) = a(r, 2)
Next r
For r = LBound(VArray, 1) To UBound(VArray, 1)
score = VArray(r, 1) * VArray(r, 2)
top = top + score
bottom = bottom + a(r, 2)
Next r
xyz = top / bottom
End Function
but anytime the bottom is greater than 32790 I get #VALUE!, but it works when it is below that value, i dont get it
Bookmarks