I have an input field [Zip] defined as a string for a length of 10. I need to move the first 5 characters to a numeric field [PermZip](length of 5). I am using a append query. Any help would be appreciated.
now you realize that as soon as you move a zipcode like:
02105
into a numeric field you are going to now have a zipcode of
2105
and you are going to have to pad zeros.....
My rule of thumb, if you are not going to be performing any arithmetic on it, it's not a number.....SSN, ZipCode, Phone numbers...how often are you adding those up? never....make them text.....Storing any financial figures? those are numbers....always adding up money!
Yes that works. The problem is when it is appending the data to the table. I changed the fieldsize on [PermZip] to double and it works just fine!
Thanks you so much for your help.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.