I’m having a bit of trouble with sorting records in descending order. In the “Row Source” of the properties of the form field I have:
SELECT tblDisserationToCitationJoin.JoinID, tblDisserationToCitationJoin.CitationID FROM tblDisserationToCitationJoin ORDER BY [JoinID] DESC;
This works perfectly in access 2007, it sorts in the form and when it is linked as a subform. However when I open it in 2003 it doesn’t sort when the form is linked as a subform, but does when it is not a subform. I’m not sure where I’ve gone wrong, and a user can’t sort the list manually because the field that it is sorted on is hidden.
Any advice is greatly appreciated.
If anyone is interested in seeing what I’m talking about you can download the .mdb from here:
http://c-helm.com/access/
The form is: frmCitationSubfrm
The field is: JoinID
The above form is used as a subform in: frmAddCitationsToDissertations
SELECT tblDisserationToCitationJoin.JoinID, tblDisserationToCitationJoin.CitationID FROM tblDisserationToCitationJoin ORDER BY [JoinID] DESC;
This works perfectly in access 2007, it sorts in the form and when it is linked as a subform. However when I open it in 2003 it doesn’t sort when the form is linked as a subform, but does when it is not a subform. I’m not sure where I’ve gone wrong, and a user can’t sort the list manually because the field that it is sorted on is hidden.
Any advice is greatly appreciated.
If anyone is interested in seeing what I’m talking about you can download the .mdb from here:
http://c-helm.com/access/
The form is: frmCitationSubfrm
The field is: JoinID
The above form is used as a subform in: frmAddCitationsToDissertations