I have a query (Union query merging two Group By queries) which returns me something like this...
GroupName CountType Count
Group1 Accepted 10
Group1 Rejected 5
Group2 Accepted 15
Group2 Rejected 7
Group3 Accepted 21
Group3 Rejected 19
Now, I want to create a report that will show me the Accepted and Rejected counts per Group...on the same line.
GroupName Accepted Rejected
Group1 10 5
Group2 15 7
Group3 21 19
Is there anyway I can get each detail section to "merge" two records like that?
Thanks...
GroupName CountType Count
Group1 Accepted 10
Group1 Rejected 5
Group2 Accepted 15
Group2 Rejected 7
Group3 Accepted 21
Group3 Rejected 19
Now, I want to create a report that will show me the Accepted and Rejected counts per Group...on the same line.
GroupName Accepted Rejected
Group1 10 5
Group2 15 7
Group3 21 19
Is there anyway I can get each detail section to "merge" two records like that?
Thanks...