Ok, I have a form that lets someone enter Toll Receipts. The Form has a couple of fields, one being a combo box that looks up 10 toll types in another table, and about 4 other data entries such as date, time, amount, and the the toll number. This is all sent back to the same table, the "Toll Expense" table. I need to make a query, which takes each 10 of the toll types, and totals each individually for a certain date. So I made sub-queries, that filtered each toll type, so there were 10 queries. 1 for Ez-Pass, one for IPASS, ect. In each separate query I used the toll type name (i.e Ez-Pass, IPASS, ect.) to filter the query, putting it in the criteria section. Then I figured I could take the these 10 queries and make a final query. This would pull the date, and toll number from the "Toll Expense" Table and then the totals from each of the 10 sub-queries. However when I tried to do this through the wizard, it gave me an error, saying, "You have chosen fields from record sources which the wizard can't connect." I think it is a relationship problem. I need to somehow set the right relationship between the Table "Toll Expense" and all the sub-queries, I am not sure what though. I could use some help to tweek this. Thanks!