Im an Access Newbie. I'm trying to create a calculated field "ZIPprefix" which consists of the first three digits of another field, "ZIP", which contains user entered zip codes. In query design view, I've defined a query field as follows:
ZIPprefix: LEFT([ZIP],3)
When I run the query, I get the error message "Undefined function Left in expression."
I looked at the References referred to in DougP's prior post. They are all already checked.
Can anyone help me figure out how to do what I'm trying to do?
BTW, I also tried a second approach: I defined the length of the ZIPprefix field to be three characters and then used a query formula:
ZIPprefix:[ZIP]
but when I ran the query, the field ZIPprefix had the entire zip code in it, not just the first three characters.
Why didn't that work?
Thanks for any help in clearing up my total confusion.
Norm158