jrmondonedo
Registered User.
- Local time
- Tomorrow, 01:17
- Joined
- Jan 3, 2014
- Messages
- 16
I created an Income/Expense Report from two separate queries so I made a Union Query with the following SQL construction:
SELECT [Transactions Extended].*
FROM [Transactions Extended]
WHERE ((([Transactions Extended].[Income/Expense])="Income"));
UNION ALL SELECT [Transactions Extended].*
FROM [Transactions Extended]
WHERE ((([Transactions Extended].[Income/Expense])="Expense"));
The output displays "Expenses" first before "Income."
My question is how can I reverse the output where "Income" would be displayed first before "Expenses"?
HELP!
SELECT [Transactions Extended].*
FROM [Transactions Extended]
WHERE ((([Transactions Extended].[Income/Expense])="Income"));
UNION ALL SELECT [Transactions Extended].*
FROM [Transactions Extended]
WHERE ((([Transactions Extended].[Income/Expense])="Expense"));
The output displays "Expenses" first before "Income."
My question is how can I reverse the output where "Income" would be displayed first before "Expenses"?
HELP!