Here's an easy question for somebody. I'm sure I'd done this before, but I need someone to refresh my brain.
I have two queries. Each uses the same Field, but different aggregation. So the results of one query would be:
Name Sent
Tod 21
Fred 11
James 52
The second query would return:
Name Received
Tod 15
Fred 5
James 25
The second query simply adds an additional criterion to the first.
How can I combine the two queries to get:
Name Sent Received
Tod 21 15
Fred 11 5
James 52 25
Thanx for the help,
tod