Hi,
Try this code:
Private Function SeparateString(str As String) As String
Dim x As Integer
Dim retStr As String
retStr = ""
For x = 1 To Len(str)
retStr = retStr & Mid(str, x, 1) & ","
Next x
SeparateString = retStr
End Function
It is a function that receives the string you want to separate, and returns the separated string.
Hope it helps.
Reputation Points: 18
Solved Threads: 7
Junior Poster in Training
Offline 51 posts
since Aug 2006