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
 Development Tools
 Reporting Services Development
 print on only last page...

Author  Topic 

raaj
Posting Yak Master

129 Posts

Posted - 2008-05-29 : 23:23:26
Hi,
I am having a text box in the footer and it shud print only in the last page of the report.
I think there is an option print on last page-true or false....but it seems to be for either entire footer ot entire header....
In my case i want only one text box in the footer to be printed only in the last page of the report.

Thanks,
Raaj.....

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-05-30 : 05:58:47
Set the hidden property of textbox with an expression like this

=IIF(Globals!PageNumber=Globals!TotalPages,False,True)
Go to Top of Page

raaj
Posting Yak Master

129 Posts

Posted - 2008-06-02 : 11:33:10
Thanks visakh,
tht worked perfectly.....

Thanks,
Raaj....
Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-06-02 : 12:18:57
quote:
Originally posted by raaj

Thanks visakh,
tht worked perfectly.....

Thanks,
Raaj....


you're welcome
Go to Top of Page
   

- Advertisement -