All, I am using Access 2003 I have a table with zipcodes and the data type is text. Some of the zipcodes were entered incorrectly. In a query, I need to use "Trim" because there are leading and trailing spaces surrounding the zipcodes also I need to get those problem zipcodes where they don't equal the length of 5 like:99999 or format the 9 digit zipcode format like: 99999.9999.
I tried:
I keep getting "" around the 5 and it doesn't list all the problem zipcodes. How can I get just the problem zipcodes?
Thanks
I tried:
Code:
not like "*****.****" and not like Len([Zipcode])>5
Thanks