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.
Sub FillRow(MainArray, RowNumber, TempArray)
Dim i
for i=0 to ubound(TempArray)
MainArray(RowNumber,i) = TempArray(i)
next
End Sub
Dim TempArray(3), MainArray(3,3)
TempArray = Array("A","B","C")
Call FillRow(MainArray,1,TempArray)
TempArray = Array("D","E","F")
Call FillRow(MainArray,2,TempArray)
TempArray = Array("G","H","I")
Call FillRow(MainArray,3,TempArray)