>I have a report based on a query that I created. I cannot seem to get it to
>give me all the records that I am showing in the query.....I'll try to
[quoted text clipped - 15 lines]
>on my report? I hope this makes some kind of sense. Thanks for any help you
>can give me!
> >I have a report based on a query that I created. I cannot seem to get it to
> >give me all the records that I am showing in the query.....I'll try to
[quoted text clipped - 20 lines]
> be sure you're not grouping by jobs. Perhaps you could also post the SQL view
> of the query.
Here is the SQL view of the query:
SELECT [tblNew Services].[Date Received], [tblNew Services].[House Number],
[tblNew Services].[Street Name], [tblNew Services].City, [tblNew
Services].[Service Type], [tblNew Services].[Single/Double], [tblNew
Services].Meters, [tblNew Services].[Request Date], [tblNew
Services].[Request Method], [tblNew Services].[Reference Number], [tblNew
Services].[Start Date], [tblNew Services].Completed, [tblNew Services].PSI,
[tblNew Services].[Remarks/Notes], tblEmployees.EmployeeName
FROM ([tblNew Services] LEFT JOIN tblNewServicesConnect ON [tblNew
Services].NewServicesID = tblNewServicesConnect.NewServicesID) LEFT JOIN
tblEmployees ON tblNewServicesConnect.EmployeeID = tblEmployees.EmployeeID
WHERE ((([tblNew Services].Completed) Is Null));
> Looking at the "Sorting and Grouping" dialog......It says....
Field - Date Received
Sort Order - Ascending
Group header - yes
Group footer - No
Group on - Each Value
Group Interval - 1
Keep together - No
John W. Vinson - 27 Feb 2008 22:42 GMT
>> Looking at the "Sorting and Grouping" dialog......It says....
>
[quoted text clipped - 6 lines]
>Group Interval - 1
>Keep together - No
And I suspect that all your textboxes are in the [Date Received] header, not
in the Detail section of the report. If so, that's why you're seeing only one
of each. You're grouping by the Date Received and displaying only the first
record on that date.

Signature
John W. Vinson [MVP]
duchessofireland - 28 Feb 2008 15:43 GMT
Absolutely!!! Problem fixed .....Thank you so much!!!
> >> Looking at the "Sorting and Grouping" dialog......It says....
> >
[quoted text clipped - 11 lines]
> of each. You're grouping by the Date Received and displaying only the first
> record on that date.