Perhaps you can adapt the following, generic formula to meet your needs, which will return TRUE if the first two characters from the string in A1 are non-numeric, and FALSE otherwise:

=COUNT(0+MID(A1,{1,2},1))=0

Of course, if the string can be of length less than two characters, then this will require an additional clause, otherwise it may give incorrect results.

Regards