Thank you John. Below is a copy of the SQL view of of the query. "Store
Numbers" is a table containing the store numbers and their 'names' which
refer to their location. The "DM Checklist Table" contains only the store
number in each record. The store number is correct in the query but the
store name is not. The store name field data type is text. The data that is
returned for the store name, is the name in the next record instead of the
name that should be pulled.
SELECT [DM Checklist Table].[Store Number], [Store Numbers].[Store Name],
[DM Checklist Table].Date, [DM Checklist Table].[Point Value and Question],
[DM Checklist Table].Score, [DM Category Table].[Control Sort], [DM Checklist
Table].[DM Category], [Sales vs Goals YTD].[Store Sales vs Goal YTD:], [Sales
vs Goals YTD].[Textile Sales vs Goal YTD:], [Sales vs Goals YTD].[Wares Sales
vs Goal YTD:], [DM Category Comments Table].[Category Comments]
FROM ((([DM Checklist Table] LEFT JOIN [Sales vs Goals YTD] ON ([DM
Checklist Table].[DM Category] = [Sales vs Goals YTD].[DM Category]) AND ([DM
Checklist Table].Date = [Sales vs Goals YTD].Date) AND ([DM Checklist
Table].[Store Number] = [Sales vs Goals YTD].[Store Number])) LEFT JOIN
[Store Numbers] ON [DM Checklist Table].[Store Number] = [Store
Numbers].[Store Number]) LEFT JOIN [DM Category Comments Table] ON ([DM
Checklist Table].[Store Number] = [DM Category Comments Table].[Store
Number]) AND ([DM Checklist Table].Date = [DM Category Comments Table].Date)
AND ([DM Checklist Table].[DM Category] = [DM Category Comments Table].[DM
Category])) LEFT JOIN [DM Category Table] ON [DM Checklist Table].[DM
Category] = [DM Category Table].[DM Category]
ORDER BY [DM Checklist Table].[Store Number], [DM Checklist Table].Date, [DM
Category Table].[Control Sort];