Sorry, I thought it was clear what I'm doing.
First of all, all of the fields used in the Query are on one table, so no relationships needed. The fields are ID, Decedent, Vendor1Name, OrderedV1, DeliveredV1 and Inspected,
There is a 2nd query with ID, Decedent, Vendor2Name, OrderedV2, DeliveredV2 and Inspected.
Currently, there is one report that checks to see whether the checkbox for OrderedV1 and DeliveredV1 are true and the Inspected is false. If so, The ID and Decedent go on a "needs inspection" report.
I have a second report that has similar checks, but for Vendor2.
I want to use an IF statement on my query to include Vendor2 with Vendor1, because if we use two vendors to complete an order for a project, I want to show that on a single report. The only time we use Vendor2 is if we have to order from multiple places for a single project; therefore, the first query for Vendor1 is usually good enough.
I hope this clarifies my question.