Hello,
I have created a summary query that contains one row with 36 calculated cols. I would like to transpose this so that there are two Cols. The only way, so far that seems it might work is to do a make table and then create a union query with 36 select statements. I tried doing a union query directly off the select query, but after about 10 Union Selects, the query errored out "too many open tables". I then did a make table and went a bit further, but before I end up with 36 union selects and a possible encounter with another error message, thought I would check if anyone has an idea that might work more reasonably (additional reason for looking at other options is would like flexibility if field names need to change or if summary fields are added removed from source calculated query). See example:
How it looks
[tt]
Total Group1 Group2 AvgGroup1 AvgGroup2....
81 35 46 125.9 82.1
How it should look
Total 81
Group1 35
Group2 46
AvgGroup1 125.9
AvgGroup2 82.1
...
[/tt]
I have created a summary query that contains one row with 36 calculated cols. I would like to transpose this so that there are two Cols. The only way, so far that seems it might work is to do a make table and then create a union query with 36 select statements. I tried doing a union query directly off the select query, but after about 10 Union Selects, the query errored out "too many open tables". I then did a make table and went a bit further, but before I end up with 36 union selects and a possible encounter with another error message, thought I would check if anyone has an idea that might work more reasonably (additional reason for looking at other options is would like flexibility if field names need to change or if summary fields are added removed from source calculated query). See example:
How it looks
[tt]
Total Group1 Group2 AvgGroup1 AvgGroup2....
81 35 46 125.9 82.1
How it should look
Total 81
Group1 35
Group2 46
AvgGroup1 125.9
AvgGroup2 82.1
...
[/tt]