' Not tested
Function Space4(strIn)
Dim strOut
Dim I
For I = 1 to Len(strIn) - 4 Step 4
strOut = strOut & Mid(strIn,1,4) & " "
Next
If I <= Len(strIn) then
strOut = strOut & Mid(strin,I)
End if
Space4 = strOut
End Function
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.