Hello,
I've the following problem. I use the following code.
Function SumAll(ParamArray var() As Variant) As Integer
For i = 0 To UBound(var)
MsgBox var(i)
Next
End Function
When I execute this function =SumAll(4,3,2) it displays the following messages:4,3,2. This is fine, but...