C
Cheryl
My subform is based on a query like this:
SELECT DISTINCTROW TblCharges.Abbreviation, TblCharges.Description,
TblCharges.Statute, TblCharges.Type, TblCharges.Class FROM TblCharges
ORDER BY TblCharges.Description;
Is there a way to sort it when you click on the header in the form view?
I'd like to be able to click on the Abbreviations, Description and
Statute headers and have it ascend sort. Currently it only sorts by
description.
Thank you.
SELECT DISTINCTROW TblCharges.Abbreviation, TblCharges.Description,
TblCharges.Statute, TblCharges.Type, TblCharges.Class FROM TblCharges
ORDER BY TblCharges.Description;
Is there a way to sort it when you click on the header in the form view?
I'd like to be able to click on the Abbreviations, Description and
Statute headers and have it ascend sort. Currently it only sorts by
description.
Thank you.