Click here to Skip to main content
15,892,161 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
I have created a RDLC report which display the result in two columns. I want to have a text to be displayed in the first page and signatories at the end of the page apart from Header and footer which gets repeated in all the pages.

Since I made the Body of the report as 2 columns I am not able to add any control which will be common for the columns. I placed the text box in the header region and made that visible only in first page. It gives the output but in all the rest of the pages, space occupied by the control getting displayed as empty space.

How to to remove that empty space in all the pages?
Posted

I want this to be placed in header. In header region, table/tablix is not allowed. Only textbox, rectangle are allowed. I want to make this text box to be visible only in first page and not in rest of the page. I did it using IIF and made the textbox hidden but in other pages, hidden text box occupying empty space.

How to get rid of that
 
Share this answer
 
In Visibility.Hidden property you have to specify if the object must be hide or not. So you can use:
C#
=IIf(IsNothing(Fields!YourData.Value), True, False)

If you're using Table/Tablix you have to set Visibility property of your TABLEROW.
And you can solve the header and footer issue from the rdlc report properties.
see Here[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900