Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 Analysis Server and Reporting Services (2005)
 Printing a Report

Author  Topic 

CoachBarker
Posting Yak Master

170 Posts

Posted - 2009-03-04 : 07:49:27
I have been testing my reports for printing, but I have aa problem. The print option is set to print the front and back of a page, the Report Header prints front and back, but the body of the report only prints on the front of the page. The reports are not using a rectangle. Any thoughts.

Thanks for the help
CoachBarker

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2009-03-04 : 09:50:01
one method would be to apply expression for report header visibility property to print only for odd pages. something like

=IIF(Globals!PageNumber.value % 2 <> 0,False,True)
Go to Top of Page

CoachBarker
Posting Yak Master

170 Posts

Posted - 2009-03-04 : 11:28:01
I meant the Page Header if that makes any difference.

Thanks for the help
CoachBarker
Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2009-03-04 : 13:01:09
quote:
Originally posted by CoachBarker

I meant the Page Header if that makes any difference.

Thanks for the help
CoachBarker


i also told about same thing, showing report heading in page
Go to Top of Page

CoachBarker
Posting Yak Master

170 Posts

Posted - 2009-03-26 : 11:11:46
I haven't gotten back to this in a while, but how do I access the visibility property of the Page Header. No matter what try I can not find that property.

Thanks for the help
CoachBarker
Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2009-03-28 : 04:51:22
quote:
Originally posted by CoachBarker

I haven't gotten back to this in a while, but how do I access the visibility property of the Page Header. No matter what try I can not find that property.

Thanks for the help
CoachBarker


why should you look for it? what you need is to alter the visbility property of items in header rather than header itself.
Go to Top of Page

CoachBarker
Posting Yak Master

170 Posts

Posted - 2009-03-28 : 12:42:27
I found out that the reason the headers were giving me a problem was that the right column in the report was a little past the edge or the report bodies size so it was carrying the blank page over to another page. But thanks for clarifying about the visibility of the items in the header.

Thanks for the help
CoachBarker
Go to Top of Page
   

- Advertisement -