I am trying to make a query using fields from multiple tables
You don't have the table "PI4MatArrived" in the query record source.
I would expect the base query to look like: (AIR CODE!!)
Code:
SELECT Item.Material, Item.Qty, Item.[PI #]
FROM Item INNER JOIN PI4MatArrived ON Item.[PI #] = [PI4MatArrived].[PI #]
or
Code:
SELECT Item.Material, Item.Qty, Item.[PI #]
FROM Item INNER JOIN PI4MatArrived ON Item.[PI #] = [PI4MatArrived].[PI #]
WHERE [PI4MatArrived].[PI #] = [Forms]![YourFormName].[YourControlName];
How are the two tables related?
One to many relationship? Which table is the "one" table?