December 8, 2011 at 1:47 am
Normally print formatting would not be done in the SQL. SQL would be used simply to select the data and another program would apply the print formatting to suit various paper sizes and margins etc,
If there is a specific place you need a page break in the data, use CHAR(12) ASCII Code 0xC Form Feed
e.g.
SELECT 'My long line of data will page break here' + CHAR(12) + 'and this is on the next page';
If you cut & paste the output of this into Word, you will get a page break.
December 8, 2011 at 6:41 am
Thanks Tom and apologies, but I think my message may have been somewhat misleading. I used Visual Studio to create the .rdl file.
I'm trying to find out how to establish correct pagebreaks in the layout. I was told that the best way to establish pagebreaks for this would be to create a table in the layout and establish the pagebreaks accordingly.
My problem is that I'm still getting blank pages, etc. and have tried different things but they are still not working properly.
Thanks,
December 8, 2011 at 6:52 am
Sorry I've never used reporting services.
I'd recommend you repost the original question under "Reporting Services", "Reporting Services 2005 Development", http://www.sqlservercentral.com/Forums/Forum1063-1.aspx making it clear you're looking for help with a .RDL file
That way the right people will get to see it.
December 8, 2011 at 7:11 am
Great and will do; thanks again Tom and Happy Holidays!
Viewing 4 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply