What if the tables are not directly related? Basicly what I am trying to do is this: I have 4 tables, one that identifies counties by 4 letter code (CountyID) and associates it with the actual county name. The second containcs a list of all the segments in all the couties. For Gulf county the CountyID is FLGU, and a segment in gulf county would be FLGU1-003 (<-- this is the SegmentID). there is a column in the Segments table for the CountyID that relates back to the Counties table. The next to tables containing all the information from the daily reports frilled out by our crews. One for manual operations and one for mechanical. Each line item in these tables is a report from one crew in one segment for a particular day. Each report contains the SegmentID (which is related tot the segmentID in the Segments table) in which they worked and the number of people in that crew, etc. I am trying to produce a query that will tell me per county the total number of workers etc. (both manual and mechanical). But when I have both the manual and mechanical reports in the query, even if the only feild i have entered below is the county names, and I run the query it only returns counties in which both crews worked. If i remove either the mechanical or the manual table from the query the other 3 table work perfectly together. I have been able to successfully make 2 seperate querries that return the results I need, but I am unable to find a way to combine the numbers into a singel total in a querry or report. Sorry if this is really confusing, but I can't figure out what is causing this. Thanks for the help.