M
mase
Guest
TRANSFORM Sum(Query1.SumOfTNXQTY_15) AS SumOfSumOfTNXQTY_15
SELECT Query1.PRTNUM_15, Sum(Query1.SumOfTNXQTY_15) AS [Total Of SumOfTNXQTY_15]
FROM Query1
GROUP BY Query1.PRTNUM_15
PIVOT Query1.[TNXDTE_15 By Month];
I have created a cross tab query (shown above) to show the table below. Is it possible to put the months in chronological order rather than alphabetical. I have tried the column heading property but I think I’m doing something wrong as it won’t work.
Could anyone offer any advice or perhaps even the coding to carry this out?
Thanks
Mase
SELECT Query1.PRTNUM_15, Sum(Query1.SumOfTNXQTY_15) AS [Total Of SumOfTNXQTY_15]
FROM Query1
GROUP BY Query1.PRTNUM_15
PIVOT Query1.[TNXDTE_15 By Month];
I have created a cross tab query (shown above) to show the table below. Is it possible to put the months in chronological order rather than alphabetical. I have tried the column heading property but I think I’m doing something wrong as it won’t work.
Could anyone offer any advice or perhaps even the coding to carry this out?
Thanks
Mase