I have a report that return all the records (materials ordered) by all
callers each day.
I want the report to just show all the records (materials ordered) by
each individual caller each day
on a separate page.
I tried Hide Duplicates property, Force New Page all to no success.
Here is the code to my qry/record source for my report:
SELECT Trim([Last Name]) & ", " & Trim([First Name]) & " " &
Trim([Middle Initial]) AS Expr2, [qry DaysReport1].*, Caller.[Last
Name], Caller.[First Name]
FROM [qry DaysReport1] INNER JOIN Caller ON [qry DaysReport1].[Caller
ID] = Caller.[Caller ID];
What must I change on Properties of my report?
Thanks,
John
callers each day.
I want the report to just show all the records (materials ordered) by
each individual caller each day
on a separate page.
I tried Hide Duplicates property, Force New Page all to no success.
Here is the code to my qry/record source for my report:
SELECT Trim([Last Name]) & ", " & Trim([First Name]) & " " &
Trim([Middle Initial]) AS Expr2, [qry DaysReport1].*, Caller.[Last
Name], Caller.[First Name]
FROM [qry DaysReport1] INNER JOIN Caller ON [qry DaysReport1].[Caller
ID] = Caller.[Caller ID];
What must I change on Properties of my report?
Thanks,
John
Comment