Greetings!
I know I’ve seen this posted somewhere before, so basically what I’m looking for is someone to point me in the right direction.
What I’d like to do is take this aggregate query/table:
Office | Sales Count | Sales Volume |
1 | 55 | 100,000 |
2 | 23 | 200,000 |
3 | 77 | 50,000 |
4 | 6 | 100,000 |
and use the names of the fields in the query results:
Offices | |||
1 | 2 | 3 | |
Sales Count | 55 | 23 | 77 |
Sales Volume | 100,000 | 200,000 | 50,000 |
I am able to achieve the 2nd table if I use a union query and make a gazillion calls to the same table to get the results, but I know I’ve seen an easier way somewhere before. Or perhaps I’m making this exercise much more complicated than it should be?
If anyone’s seen this before, or can suggest an easier way to do it, it would be SO much appreciated!
TIA!