G
Guest
I have two tables (tMain and tNames). The tNames table holds (you guessed it) Names (fName (primary) and flocation). The tMain holds reporting records (fRecordID, fName, fSales, etc). What I want to see is a count of records based on the Names. I can do this where tMain.fName = tNames.fName but it doesn't show the tnames.fNames that don't have any records in tMain (I.e. the count would be 0). How would I get the query to show me those as well so I can track who is NOT using the system?