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 SplitTest()
Dim Result() As String
Dim A As Long
Dim Response As String
Result() = Split("This is a series of words", " ")
For A = UBound(Result()) To 0 Step -1
Response = Response & Result(A) & vbCr
Next A
MsgBox Response
End Function
words
of
series
a
is
This