Jon K, I have a Borrower/Contractor table with Company name and several address fields. I have a Projects Table with project name and several fields about that project. Because a project can have many different contractors and a contractor can work on many different projects, I have ConPrjt table joining the two tables together in a many to many relationship. In this table In addition the two primary key fields from each table there are two other fields. A OwnerType field has data describing in what capacity the Owner is working on a project, such as Owner, Owner/Contractor, Contractor, Owner/sponsor, or Sponsor. There is also a Contact field with 1 or 2 when there is more than one owner or 3 or 4 when there is more than one contractor. I want to create a query that has a field called Contractor containing the company's name and I want another field called Owner containing the company's. When the OwnerType field is "Owner/Contractor" and Contact Field is "1", I want the Contractor field to say "Same" or else the company's name if Ownertype field is "Contractor". My problem is when there is a "Owner" and a "Contractor" I get repeating fields. How do I get the query not to repeat fields? I hope this is clearer. Thanks in advance.