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 aryTemp
Dim i
Dim Test
Test = "0000100008+00009+0007+00000000000001 0000+10000"
aryTemp = Split(Test, "+")
Test = ""
Test = aryTemp(0) & "+" & aryTemp(1) & "-"
For i = (LBound(aryTemp) + 2) To UBound(aryTemp)
Test = Test & aryTemp(i) & "+"
Next
Test = Left(Test, Len(Test) - 1)
MsgBox Test