try this piece of code,


Sub split_textbox()
'code by xlbiznes
Dim str As String
Dim num As String
For x = 1 To Len(TextBox1.Text)
If IsNumeric(Mid(TextBox1.Text, x, 1)) = True Then
num = num & Mid(TextBox1.Text, x, 1)
Else
str = str & Mid(TextBox1.Text, x, 1)
End If
Next
MsgBox "This is the string  part of your textbox :" & str & vbCrLf & "This is the numeric part of your textbox " & num, vbInformation, "Xlbiznes"
End Sub