Query/Report Structure Question

G

Guest

I would like to build a report that shows the names of medical facilities in
the left row, column headings will be the audit names, and the results will
be the data. I built a crosstab query, and then the report, and everything
worked fine, until changes were made to when the audits schedule, now I need
to group the audit names by the quarter they are due. Some audits will be
due multiple quarters based on the facility results. I am stuck in how to
accomplish this.

Here is my SQL for the crosstab query. I am not a very advanced user and
could use some help. I posted in an earlier post, but probably didn't
explain my dilemma very well.
TRANSFORM Min([AuditResultsQuery].[AuditResults]) AS [MinOfAuditResults]
SELECT [AuditResultsQuery].[MedicalCenter]
FROM [AuditResultsQuery]
GROUP BY [AuditResultsQuery].[MedicalCenter]
PIVOT [Audit ResultsQuery].[AuditName];

Also, some audits will be moving to 2008, and my superiors want to move them
to a second page, should the crosstab be added as a subreport so that I could
insert a page break in the main report?
 
G

Guest

Search on -- Report on Crosstab query
In --- microsoft.public.access.reports
Response by --- Duane Hookom
 
G

Guest

When I click on the link, the page that opens does not have any downloads or
other files to view.

KARL DEWEY said:
Search on -- Report on Crosstab query
In --- microsoft.public.access.reports
Response by --- Duane Hookom
--
KARL DEWEY
Build a little - Test a little


tg7 said:
I would like to build a report that shows the names of medical facilities in
the left row, column headings will be the audit names, and the results will
be the data. I built a crosstab query, and then the report, and everything
worked fine, until changes were made to when the audits schedule, now I need
to group the audit names by the quarter they are due. Some audits will be
due multiple quarters based on the facility results. I am stuck in how to
accomplish this.

Here is my SQL for the crosstab query. I am not a very advanced user and
could use some help. I posted in an earlier post, but probably didn't
explain my dilemma very well.
TRANSFORM Min([AuditResultsQuery].[AuditResults]) AS [MinOfAuditResults]
SELECT [AuditResultsQuery].[MedicalCenter]
FROM [AuditResultsQuery]
GROUP BY [AuditResultsQuery].[MedicalCenter]
PIVOT [Audit ResultsQuery].[AuditName];

Also, some audits will be moving to 2008, and my superiors want to move them
to a second page, should the crosstab be added as a subreport so that I could
insert a page break in the main report?
 
G

Guest

Seach Access for Dynamic Report
--
KARL DEWEY
Build a little - Test a little


tg7 said:
When I click on the link, the page that opens does not have any downloads or
other files to view.

KARL DEWEY said:
Search on -- Report on Crosstab query
In --- microsoft.public.access.reports
Response by --- Duane Hookom
--
KARL DEWEY
Build a little - Test a little


tg7 said:
I would like to build a report that shows the names of medical facilities in
the left row, column headings will be the audit names, and the results will
be the data. I built a crosstab query, and then the report, and everything
worked fine, until changes were made to when the audits schedule, now I need
to group the audit names by the quarter they are due. Some audits will be
due multiple quarters based on the facility results. I am stuck in how to
accomplish this.

Here is my SQL for the crosstab query. I am not a very advanced user and
could use some help. I posted in an earlier post, but probably didn't
explain my dilemma very well.
TRANSFORM Min([AuditResultsQuery].[AuditResults]) AS [MinOfAuditResults]
SELECT [AuditResultsQuery].[MedicalCenter]
FROM [AuditResultsQuery]
GROUP BY [AuditResultsQuery].[MedicalCenter]
PIVOT [Audit ResultsQuery].[AuditName];

Also, some audits will be moving to 2008, and my superiors want to move them
to a second page, should the crosstab be added as a subreport so that I could
insert a page break in the main report?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top