Does anyone have an EASY way of finding an invalid value within a text string.
For example... I have a field that should contain ONLY letters. No special characters. No numbers.
I know I can use a bunch of CONTAINS or FIND functions to search for each number/character, but that gets rather long rather quickly.
I know I can parse out the text string character by character using MID statements and hit against a table of valid or invalid characters, but if my text string is 200 characters long, that would exceed the sheet column limit.
Ideas?