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.
Dim a as string, i as integer, NextRow as long
a = split(Sess0.Screen.GetString(9, 3, 100)),",")
nextrow = obj.sheets(1).[A1].currentregion.rows.count + 1
for i = 0 to ubound(a)
obj.sheets(1).cells(nextrow, i+1).value = a(i)
next
Function Splits(s As String, d As String)
Dim i As Integer, j As Integer, a() As String, p1 As Integer
p1 = 1
j = 0
For i = 1 To Len(s)
If Mid(s, i, 1) = d Then
GoSub LoadArray
End If
Next
GoSub LoadArray
Splits = a
Exit Function
LoadArray:
ReDim Preserve a(j)
a(j) = Mid(s, p1, i - p1)
j = j + 1
p1 = i + 1
Return
End Function