G
Guest
How can I make a total column ( sum ) on a crosstab query
TRANSFORM Sum([SumOfMOV]
SELECT [DESCR], Sum([SumOfMOV]) AS [Total Of SumOfMOV
FROM [TABLE
GROUP BY [DESCR
PIVOT Format([RPDGJ],"mmm") IN ("Jan","Feb","Mar","Apr","May","Jun","Jul","Agu","Sep","Oct","Nov","Dec")
I want to add at the end of each row a total column... adding each of the values on each month...
TRANSFORM Sum([SumOfMOV]
SELECT [DESCR], Sum([SumOfMOV]) AS [Total Of SumOfMOV
FROM [TABLE
GROUP BY [DESCR
PIVOT Format([RPDGJ],"mmm") IN ("Jan","Feb","Mar","Apr","May","Jun","Jul","Agu","Sep","Oct","Nov","Dec")
I want to add at the end of each row a total column... adding each of the values on each month...