Taking a letter out from a string is equivalent to replacing the letter in the string with null letter (""). If you take "E" out from "ABCDEFG", do as follows. ST$="ABCDEFG" ST$=SUBST$(ST$,5-1,1,"") ?ST$