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.
For x = 5 to 20
a = Range("A" & x).Value
If Len(a) > 0 Then
ToList = ToList & a & ";"
End If
Next x
' Now strip off trailing semicolon
ToList = Left(ToList, 1, (Len(ToList) - 1))