Dim strTest As String
strTest = "123!ThisLetter!344"
Msgbox Split(strTest, "!")(1)
Split will create an array of string for you. This array starts at 0, so the (1) element of the array will be what you are looking for.
-George
Strong and bitter words indicate a weak cause. - Fortune cookie wisdom