Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Function SumArrays(Ary1, Ary2)
Dim Ary3(), i, j
i = LBound(Ary1) + UBound(Ary1)
j = LBound(Ary2) - LBound(Ary1)
If i = LBound(Ary2) + UBound(Ary2) Then
ReDim Ary3(LBound(Ary1) To UBound(Ary1))
For i = LBound(Ary1) To UBound(Ary1)
Ary3(i) = Ary1(i) + Ary2(i + j)
Next
SumArrays = Ary3
Else
SumArrays = Array(0)
End If
End Function