R
Rob B.
I want some form fields to automatically populate with data once another
field on the form is filled in. Specifically, I want a city and state to
fill in automatically once a zip code is entered.
My table tblZipCodes has 3 fields: fldZip, fldCity, and fldState
My query qryZipCodes has an expression, expCitySt, which combines fldCity
and fldState, which looks like, expCitySt: [fldCity] & ", " & [fldState].
The expression produces the desired result in the query
On the form when I enter a valid Zip Code from tblZipCodes, the field that
points to qryZipCodes.expCitySt, just returns #NAME?.
Ideas?
Rob B.
field on the form is filled in. Specifically, I want a city and state to
fill in automatically once a zip code is entered.
My table tblZipCodes has 3 fields: fldZip, fldCity, and fldState
My query qryZipCodes has an expression, expCitySt, which combines fldCity
and fldState, which looks like, expCitySt: [fldCity] & ", " & [fldState].
The expression produces the desired result in the query
On the form when I enter a valid Zip Code from tblZipCodes, the field that
points to qryZipCodes.expCitySt, just returns #NAME?.
Ideas?
Rob B.