Hi,
I am currently trying to run some quality control on a database with some bad data. There are integers 0 - 9 found in First Name and Last Name fields where there shouldn't be, for example 342 4324 242 3424 or 1414ADGE2342AOPWO when all the records should be straightforward names. Other cases will include random punctuation marks as well and I wanted to know if there's any good way to identify all the anomalies in my database.
So far, I've been writing every possibility I can think of in a formula tool, marking any record that contains an integer or a strange punctuation as "invalid" and have the rest return as "valid." But as one can imagine, trying to account for every instance of an edge case is becoming quite verbose, my expression has 30+ lines. Is there a more sophisticated or cleaner way of doing this?
Thanks