Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hide Blank Pages Sql Reporting 2005

Status
Not open for further replies.

gtjr921

Programmer
Aug 30, 2006
115
I have a report with some hidden fields, the report spans the hidden field to another page. The data is hidden, but it still shows the page as if data were there.
I can you supress blank pages in a Sql 2005 report?
Thanks
 
To my knowledge there's no way of not printing the blank pages. Can you move the hidden fields to an area of the report that does get printed, behind a table perhaps, so that the blank pages are no longer an issue?

Cheers,
Leigh

The problem with common sense is that it isn't that common!


 
that's a thought I'll check it out thanks
 
Hi,
Here are some options that might work for you with some modifications to meet your requirements.

=iif(rownumber("DataSourceName") = 0,true, false)

=iif(Fields!FieldName.Value="",true,false)

Jacque
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top