So I have a field that's quite messy. The text varies, but each entry is similar to "1;2;3;;; " or ";1;2;3;4 "
What I'm trying to do is (1) clean up the field so each entry is ONLY the numbers ("123", "12345", etc.). (2) I want to be able to count the number of numbers so that: if it's greater than or equal to 3 it returns "More Than 3", if it's less than 3 it shows "Less Than 3", or if it's blank it shows "Blank".
I've tried everything I can think of. When I use the Replace function for either the semicolon or the extra spaces, the Len function shows the number of characters of the input, NOT the output, as I would have expected it to.
Any help would be really appreciated!!!