Here's my query:
SELECT C1.* ,C2.Userdef02 FROM CONTACT1 AS C1 JOIN CONTACT2 AS C2 ON C2.AccountNo = C1.AccountNo WHERE (C1.Key3 = 'K' AND C1.Key2 = 'T20') ORDER BY C2.Userdef02 desc
When I execute the query, the order is descending as requested. However, when I build a group on this query and activate, I lose the sort order. In fact, I can't tell at all what the sort order is. I've tried specifying a sort option when creating the group as well as leaving it alone. How can I get the members of a group to be sorted in the order I have in the query?
SELECT C1.* ,C2.Userdef02 FROM CONTACT1 AS C1 JOIN CONTACT2 AS C2 ON C2.AccountNo = C1.AccountNo WHERE (C1.Key3 = 'K' AND C1.Key2 = 'T20') ORDER BY C2.Userdef02 desc
When I execute the query, the order is descending as requested. However, when I build a group on this query and activate, I lose the sort order. In fact, I can't tell at all what the sort order is. I've tried specifying a sort option when creating the group as well as leaving it alone. How can I get the members of a group to be sorted in the order I have in the query?