Try Hard said:
John
Thanks for your comments, i have inculded the SQL view of the query below:
SELECT [WI Competency Table].[Position Name], [WI Competency Table].[WI
Description], [WI Competency Table].[Employee Name], [WI Competency
Table].[Date Trained], [Work Instruction].[Position Name], [Work
Instruction].[WI Description]
FROM [WI Competency Table] INNER JOIN [Work Instruction] ON [WI Competency
Table].[WI Description] = [Work Instruction].[WI Description];
In the WI Competency table the records are correct as entered in the form.
The date field has been duplicated for any Employee Name and Position
which
has the same Work Instruction allocated to it.
That is precisely how relational queries are designed to work.
Each record in [WI Constancy Table] will be combined with every matching
record in the [Work Instruction] table. Every field you select from the
first table will be displayed as many times as there are matching records.
If there are five matching records on [WI Description] you will see it five
times, once for each [Work instruction] record.
I'm wondering if the Description field is appropriate! How are the tables
related in the Relationships window?>