https://bugs.documentfoundation.org/show_bug.cgi?id=170840

--- Comment #2 from [email protected] ---
Below is the code of the macro "Som" used for the test :

Function Som( Liste() ) As Double
        Dim i,d,f As Integer
        Dim s As Double

        If Not IsArray(Liste) Then
                Som=0
                Exit Function
        End If

        d=LBound(Liste,1)
        f=UBound(Liste,1)

        s=0
        For i=d to f
                If( IsNumeric(Liste(i,1)) ) Then
                        s=s+Liste(i,1)
                End If
        Next i

        Som=s
End Function

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to