I have a Union Query that groups the records of a few different queries into a single Query. It works great, except that I would like the order of the records to be the same order as in the SQL code. Alas, they are being sorted in the resulting Query by the values of the first field. How can I shut this off? Below is the code.
Thanks!
Rich
Thanks!
Rich
Code:
SELECT qryInvoiceFixedFee1.Category, qryInvoiceFixedFee1.Txt, qryInvoiceFixedFee1.Amount
FROM qryInvoiceFixedFee1;
UNION SELECT qryInvoiceFixedFee2.Category, qryInvoiceFixedFee2.Txt, qryInvoiceFixedFee2.Amount
FROM qryInvoiceFixedFee2;
UNION SELECT qryInvoiceFixedFee3.Category, qryInvoiceFixedFee3.Txt, qryInvoiceFixedFee3.Amount
FROM qryInvoiceFixedFee3;
[\code]