Hello,
I still haven't been able to quite get this: I have a table Submittals that contains basic information about the Submittal (To, From, Subject,etc). I then have 5 other tables for the different types of submittals (Materials, Plans, etc). Each of these tables is joined to the Submittals table using Submittal number as the foreign key. I want to create a query that will show just the One Submittal and any information from related tables that have that Submittal Number as the foreign key. If I Create Submittal #1 then add Materials to it, it shows up on the same row in the query. Once I add fields from any other tables, it starts duplicating the information so my one submittal would appear twice. I get why it's doing it, but how do I make it just show one row for all records with the same Submittal Number. I've tried Distinct and Sum, but I'm not very knowledgable about how to use them to get what I want.