View Single Post
  #4  
Old February 20th, 2007, 02:47 PM posted to microsoft.public.access.queries
JoHickey
external usenet poster
 
Posts: 7
Default Tables with Lookup queries

Thank you Ron....that worked perfectly!

"Ron2006" wrote:


I believe you can simplify it significantly. Try this:

SELECT Municipalities.Municipality, Municipalities.MUNCode
FROM Municipalities
WHERE Municipalities.CTYCode = forms![thenameoftheformyouare on]![thenameofyourcitycodefield];


There is really no need for the join to the city table for the
condition is simply that the municipalities are part of the city
chosen in your prior combo.

Ron