G
Guest
I have a report that runs from a query. In the query there is a date field.
It is set for ascending order. When I run the query itself the dates are
listed correctly in ascending order. But when the report is run, the dates
do not list in ascending order. Am I missing? This is occuring in more then
one report. Below is a simple query in which it is not occuring on the
report but does in the query.
SELECT ClientName, ClientServicesPerson, OverallClientStatus,
ClientRenewalDate
FROM usrtblClientInformation
WHERE (((OverallClientStatus)="Active") AND ((ClientRenewalDate) Between
[Forms]![usrfrmReportModule]![txtStartDate] And
[Forms]![usrfrmReportModule]![txtEndDate]))
ORDER BY ClientRenewalDate;
Thanks in advance for anyone who responds.
*** John
It is set for ascending order. When I run the query itself the dates are
listed correctly in ascending order. But when the report is run, the dates
do not list in ascending order. Am I missing? This is occuring in more then
one report. Below is a simple query in which it is not occuring on the
report but does in the query.
SELECT ClientName, ClientServicesPerson, OverallClientStatus,
ClientRenewalDate
FROM usrtblClientInformation
WHERE (((OverallClientStatus)="Active") AND ((ClientRenewalDate) Between
[Forms]![usrfrmReportModule]![txtStartDate] And
[Forms]![usrfrmReportModule]![txtEndDate]))
ORDER BY ClientRenewalDate;
Thanks in advance for anyone who responds.
*** John