I've got a query that returns Headcount and Newcomers values for months like this:
Month Headcount Newcomers
January 12 2
February 14 1
...
and so on.
I would like to display them in a report this way:
January February ...
Headcount 12 14
Newcomers 2 1
Is it possible in MS Access? To create a query that would return such data using my query or to create a report that could display data returned by my query in this way? I've read about pivot tables and crosstab queries but this is not what I am looking for, as they do not simply rotate the matrix.