Is there a way to set the column title/header for the columns in a crosstab query?
For example, I have the table with the following data:
Table1
Series Xval Yval
====== ==== ====
A 10 10
A 15 20
A 20 30
B 10 100
B 15 120
B 20 150
and I use the following crosstab query
TRANSFORM Sum(tblMultiGraph.yVal) AS SumOfyVal SELECT tblMultiGraph.xVal FROM tblMultiGraph GROUP BY tblMultiGraph.xVal PIVOT tblMultiGraph.Series;
I get the results:
Xval A B
==== === ===
10 10 100
15 20 120
20 30 150
Is there a way to rename the column headers "A" and "B"? Say to "Series_A" and "Series_B"?
For example, I have the table with the following data:
Table1
Series Xval Yval
====== ==== ====
A 10 10
A 15 20
A 20 30
B 10 100
B 15 120
B 20 150
and I use the following crosstab query
TRANSFORM Sum(tblMultiGraph.yVal) AS SumOfyVal SELECT tblMultiGraph.xVal FROM tblMultiGraph GROUP BY tblMultiGraph.xVal PIVOT tblMultiGraph.Series;
I get the results:
Xval A B
==== === ===
10 10 100
15 20 120
20 30 150
Is there a way to rename the column headers "A" and "B"? Say to "Series_A" and "Series_B"?