I have 3 tables
One has field about County: CountyCode, Name, SomeOtherInfo
The second has fields about cities: CountyCode, CityCode, CityName, Population, Elevation, Etc.
The third one has information about people within cities: CityCode, SocialSecurityNo, FirstName, SecondName, Profession, Validation, email, address, etc.
The validation field is a Yes/No Field (checkbox)
I need to set a query that returns a count of all valid person, on each city and each county.
Actually I did this one, but my trouble is that I need 0 values too to be displayed.
If a city has no valid people in it, 0 value should be displayed.
If I do a simple count of SocialSecurityNo, I am able to display the 0 values, but if I try to restrict the results only to show valid people, then only the cities that contains valid person will be displayed, the ones with 0 values being skipped.
Please advise....