J
Jack Sheet
Hi all
I have a crosstab query
TRANSFORM Count(Q_Tasks_SATRs_OS.ID_Tasks) AS CountOfID_Tasks
SELECT Q_Tasks_SATRs_OS.Tax, Count(Q_Tasks_SATRs_OS.ID_Tasks) AS [Total Of
ID_Tasks]
FROM Q_Tasks_SATRs_OS
GROUP BY Q_Tasks_SATRs_OS.Tax
PIVOT Q_Tasks_SATRs_OS.Partner;
I want to produce a report of the above, which includes totals under each
column. I get a nice report using the wizard, in all respects but for the
omission of the totals.
I am unsure whether the totals should be generated somewhere in the query,
or using a formula in a text box in a report. I am conscious that in theory
the number of columns can be variable depending on the underlying data, so
my instinct is that it has to be something in the query.
Any help available on this? Sounds like a fairly standard sort of thing to
want to achieve, but I went round the houses in the Help system without
getting anywhere.
I have a crosstab query
TRANSFORM Count(Q_Tasks_SATRs_OS.ID_Tasks) AS CountOfID_Tasks
SELECT Q_Tasks_SATRs_OS.Tax, Count(Q_Tasks_SATRs_OS.ID_Tasks) AS [Total Of
ID_Tasks]
FROM Q_Tasks_SATRs_OS
GROUP BY Q_Tasks_SATRs_OS.Tax
PIVOT Q_Tasks_SATRs_OS.Partner;
I want to produce a report of the above, which includes totals under each
column. I get a nice report using the wizard, in all respects but for the
omission of the totals.
I am unsure whether the totals should be generated somewhere in the query,
or using a formula in a text box in a report. I am conscious that in theory
the number of columns can be variable depending on the underlying data, so
my instinct is that it has to be something in the query.
Any help available on this? Sounds like a fairly standard sort of thing to
want to achieve, but I went round the houses in the Help system without
getting anywhere.