G
Graham
I want to be able to have a report in a preset order, what I have done at
the moment I have put some sql in the Record Source field which is:
SELECT tblTroubleshoot.IngTroubleshootID, tblTroubleshoot.dtmOpenDate,
tblTroubleshoot.dtmCloseDate, tblTroubleshoot.txtPriority1,
tblTroubleshoot.txtPriority2, tblTroubleshoot.txtUser,
tblTroubleshoot.memNotes, tblTroubleshoot.txtSolved
FROM tblTroubleshoot
WHERE (((tblTroubleshoot.dtmCloseDate) Is Null) AND
((tblTroubleshoot.txtSolved)=No))
ORDER BY tblTroubleshoot.txtPriority1 DESC;
When I run this as a query it sorts on the txtPriority1 field, but when I
run the Report the sort order dont work, can anyone please explain why.
Many thanks,
Graham.
the moment I have put some sql in the Record Source field which is:
SELECT tblTroubleshoot.IngTroubleshootID, tblTroubleshoot.dtmOpenDate,
tblTroubleshoot.dtmCloseDate, tblTroubleshoot.txtPriority1,
tblTroubleshoot.txtPriority2, tblTroubleshoot.txtUser,
tblTroubleshoot.memNotes, tblTroubleshoot.txtSolved
FROM tblTroubleshoot
WHERE (((tblTroubleshoot.dtmCloseDate) Is Null) AND
((tblTroubleshoot.txtSolved)=No))
ORDER BY tblTroubleshoot.txtPriority1 DESC;
When I run this as a query it sorts on the txtPriority1 field, but when I
run the Report the sort order dont work, can anyone please explain why.
Many thanks,
Graham.