I have a query that is pulling 463 records of dates and then the data is either a 1 or 0. 1 = Yes, 0 = No.
SELECT [Pacer QA tbl].Pneumothorax, [Pacer QA tbl].PericardialEffusionTamponade, [Pacer QA tbl].HematomaRequIntervention, [Pacer QA tbl].Other, [Pacer QA tbl].[LeadRevision>TwelveMonths], [Pacer QA tbl].[LeadRevision<Twelve Months], [Pacer QA tbl].[PocketRevision<Twelve Months], [Pacer QA tbl].[DeviceUpgrade<TwelveMonths], [Pacer QA tbl].[Infection<SixMonths], [Pacer QA tbl].[GeneratorChange<FiveYrs]
FROM [Pacer QA tbl];
In the report I am totalling all of the 1 values under each complications and then adding complications percent against the total of procedures. The report should only be 1 page, but it is 156 pages, repeating the first page over and over. Can you tell me what I need to look for to resolve this? This report will need to be embedded into another report. I have made sure that there is no extra white space in the report, checked the properties on all of the fields. (I've attached the report. I had to deleted all but 2 pages to export it.)
SELECT [Pacer QA tbl].Pneumothorax, [Pacer QA tbl].PericardialEffusionTamponade, [Pacer QA tbl].HematomaRequIntervention, [Pacer QA tbl].Other, [Pacer QA tbl].[LeadRevision>TwelveMonths], [Pacer QA tbl].[LeadRevision<Twelve Months], [Pacer QA tbl].[PocketRevision<Twelve Months], [Pacer QA tbl].[DeviceUpgrade<TwelveMonths], [Pacer QA tbl].[Infection<SixMonths], [Pacer QA tbl].[GeneratorChange<FiveYrs]
FROM [Pacer QA tbl];
In the report I am totalling all of the 1 values under each complications and then adding complications percent against the total of procedures. The report should only be 1 page, but it is 156 pages, repeating the first page over and over. Can you tell me what I need to look for to resolve this? This report will need to be embedded into another report. I have made sure that there is no extra white space in the report, checked the properties on all of the fields. (I've attached the report. I had to deleted all but 2 pages to export it.)