G
Guest
..I have a drop down combo box for zip code that also updates the city and
state when you select it as follows; (SELECT tblZipCode.ZIPCODE,
tblZipCode.CITY, tblZipCode.State FROM tblZipCode ORDER BY tblZipCode.CITY;
)......................also private Sub Zip_AfterUpdate()
Me!State = Zip.Column(2)
End Sub
The problem is if one city has multple zip codes I can only select the
first find. I tried to do the same thing with city instead of zipcode but
there are some towns that share the same zipcode Can anyone help please?
Ive been working on this for a long time. Thanks, KPE
state when you select it as follows; (SELECT tblZipCode.ZIPCODE,
tblZipCode.CITY, tblZipCode.State FROM tblZipCode ORDER BY tblZipCode.CITY;
)......................also private Sub Zip_AfterUpdate()
Me!State = Zip.Column(2)
End Sub
The problem is if one city has multple zip codes I can only select the
first find. I tried to do the same thing with city instead of zipcode but
there are some towns that share the same zipcode Can anyone help please?
Ive been working on this for a long time. Thanks, KPE