I have a simple crosstab that I use as the basis of a report; the report creates column totals (down) and row totals (across), giving me a grand total as well.
My request is to get the results of the report into an especially formatted Powerpoint slide.
I haven't succeeded in merely exporting the crosstab, and then manipulating it in excel to get my various totals; if I had, I might have let the Powerpoint slide accept that as a paste link or import.
Here is the SQL:
TRANSFORM Count(qr_detail_TY.id) AS [Total of ID]
SELECT qr_detail_TY.topic, qr_detail_TY.order, qr_detail_TY.issue
FROM qr_detail_TY
GROUP BY qr_detail_TY.topic, qr_detail_TY.order, qr_detail_TY.issue
ORDER BY qr_detail_TY.order
PIVOT qr_detail_TY.eval_txt In (Yes,No,"N/A");
You can imagine that I want this to be a recurring slide, e.g., each week, running this query and presenting the totals in the same, formatted way (number of rows may change, but not columns).
Thank you!
Tom
My request is to get the results of the report into an especially formatted Powerpoint slide.
I haven't succeeded in merely exporting the crosstab, and then manipulating it in excel to get my various totals; if I had, I might have let the Powerpoint slide accept that as a paste link or import.
Here is the SQL:
TRANSFORM Count(qr_detail_TY.id) AS [Total of ID]
SELECT qr_detail_TY.topic, qr_detail_TY.order, qr_detail_TY.issue
FROM qr_detail_TY
GROUP BY qr_detail_TY.topic, qr_detail_TY.order, qr_detail_TY.issue
ORDER BY qr_detail_TY.order
PIVOT qr_detail_TY.eval_txt In (Yes,No,"N/A");
You can imagine that I want this to be a recurring slide, e.g., each week, running this query and presenting the totals in the same, formatted way (number of rows may change, but not columns).
Thank you!
Tom