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 myName As String
Dim bldStr As String
Dim sItems() As String
Dim sItem As Variant
myName = "John E Doe"
bldStr = ""
sItems = Split(myName, " ")
For Each sItem In sItems
bldStr = bldStr & Left(sItem, 1)
Next
MsgBox bldStr