I have a row group in my SSRS report that limits the table when it is used in a webspart in sharepoint.
=Ceiling(RowNumber(Nothing)/8)
this works fine, i get 8 rows per page. but the issue is when i try and export the table.
For example when i export to PDF i get 8 items then a lot of white space and on the next page i get 8 more items, when what i really want is my exports not to have paging until it is out of room on the page.
seems like my expression broke my exporting. is there a correct way to have both?
Thank you.
so i was able to get it to work from the example in this post
http://beyondrelational.com/modules/2/blogs/115/posts/11163/disable-page-break-when-exporting-to-excel-in-ssrs-2008-r2.aspx
since i am doing data processing RenderFormat can’t be used in a lot of places but this way worked really well