I have a continuous form that displays a list of contacts. I want my users to be able to use a combo box (cboArea) to filter the results by first 3 digits of the zip code. I would like the user to select a city from the combo box, and the form to show
results for all zip codes in that city. For example:
Chicago (show results for 123**, 124**, 125**)
Miami (show results for 223**, 323**)
Boston (show results for 333**)
Other (show all results that are not 123**, 124**, 125**, 223**, 323**, 333**)
I know how to do this if each option represented only one zip code, but I don't know how to add multiple zip codes or do the "Other" option. Does anyone know how to do this using code for the combo box, the form's Record Source, or anything else?
Thanks in advance for any help!