Allen thanks for the response.
This is what I have and it is not working, what am I doing wrong?
TRANSFORM Sum(TSAU.[Reg Hours]) AS [SumOfReg Hours]
SELECT TSAU.Project, TSAU.Resource AS [Resource Name], TSAU.Dept AS [Dept
Name], TSAU.Task AS [Task Name], TSAU.CN AS [Charge No], TSAU.[Row Type],
Sum(TSAU.[Reg Hours]) AS [Total Hours]
FROM [TS Actuals 001 Union] AS TSAU
WHERE (((TSAU.Period)<>"pre 2005"))
GROUP BY TSAU.Project, TSAU.Resource, TSAU.Dept, TSAU.Task, TSAU.CN,
TSAU.[Row Type]
PIVOT TSAU.Period;
Allen Browne said:
If you use the Column Headings property of the crosstab so that all the
column headings are specified, you can add a calculated field to the grid
as
a RowHeading.
You will type something like this into the Field row:
HorizTotal: Nz([F1],0) + Nz([F2],0) + ...
where F1 and F2 are the names in the Column Headings.
Is it possible to put the total row (row heading) at the end of your
results
after all your column headings? If so how can I do this all in one
query.