Here is the SQL
SELECT [Injury Log].Site, [Injury Log].Name, [Injury Log].DateOfIncident, Sites.JobNumber, Sites.Address, [Personnel Information].[Employee#]
FROM (Sites INNER JOIN [Personnel Information] ON Sites.JobNumber = [Personnel Information].JobNumber) INNER JOIN [Injury Log] ON Sites.AccountName = [Injury Log].Site;
I think I figured it out. In the Injury Log table name is 1 field and in Personnel Information table I have LastName and FirstName.
I think this is my problem. Do you concur?