tumby1974
Posts: 26
|
| Posted: 01/11/2012, 8:33 AM |
|
I'd like to be able to have my report use page breaks per each grouping. So each group is its own page.
Group1
Data
Data
Date
(next page)
Group2
Data
Data
etc..
How can I do this?
|
 |
 |
Gena
Posts: 591
|
| Posted: 01/11/2012, 8:46 AM |
|
what is PAGE ?
_________________
Gena |
 |
 |
Gena
Posts: 591
|
| Posted: 01/11/2012, 8:50 AM |
|
btw look at generated html code fro your report. you can find something like this
<!-- BEGIN Panel PageBreak --> </table> </td> </tr> </table> <p style="page-break-after: always"> </p> .....
_________________
Gena |
 |
 |
tumby1974
Posts: 26
|
| Posted: 01/11/2012, 8:56 AM |
|
Quote Gena:
btw look at generated html code fro your report. you can find something like this
<!-- BEGIN Panel PageBreak --> </table> </td> </tr> </table> <p style="page-break-after: always"> </p> .....
thanks for the reply.
I have my report that runs. It's grouped by apartment complexes. So if I have 5 Apartment Complexes, that's 5 sets of data (5 groupings)
I want each grouping to be on it's on a new page so when I print it, there are 5 pages, one page for each Apartment Complex grouping
Page 1
Apartment Complex A
Report Data
Report Data
Report Data
Page 2
Apartment Complex B
Report Data
Report Data
Report Data
Page 3
etc.....
|
 |
 |
solesz
Posts: 137
|
| Posted: 01/12/2012, 5:28 AM |
|
I solved it before, like this (anyway it is similar to the solution written above)
<style type="text/css"> <!-- H3 { page-break-before: always; } --> </style>
Then I added the <H3>Title</H3> where I want the page be started. It is only works in print mode.
( Now I am preparing a different report, where report shold be exported to excel, and there I want inform excel where to place the pagebreak. Still not successful. But I have hope and even better I have some idea ;) too. )
solesz
|
 |
 |