You could also use a double space in your Inst() criteria
Trim(Mid(yourstring, InStr(1, yourstring, " ") + 1))
one way to check what your dealing with when working with strings is to check ascii values
This will expose non printable characters
Sub CheckString(strIN As String)
Dim i As...