we use Crystal Reports 9 and want to improve the automatic pagination for printing.
We have the following structure in our report:
- Group
- Subgroup
- Entry in Subgroup
- Entry in Subgroup
- Entry in Subgroup
- Subgroup
The whole group appears on the current page if all entries of the subgroup fit on the current page. That's ok. If the subgroup has more entries and there isn't enough space on the current page left then the whole group will be p开发者_Go百科ushed to the next page. That's not ok.
We don't want half of the pages empty and we don't want this either:
- Group
- Subgroup
******************new Page******************
- Entry in Subgroup
- Entry in Subgroup
- Entry in Subgroup
We want to put the group only on the current page if at least one entry of the subgroup fits to the current page. Like this:
- Group
- Subgroup
- Entry in Subgroup
- Subgroup
******************new page******************
- Entry in Subgroup
- Entry in Subgroup
Is there a way to achive this with Crystal Reports 9. We would even get Crystal 2008 if necessary.
Thanks and greetings Juergen
Have you had a look at Keep Together option?
@Juergen, Your problem looks that Group Header or Detail section property KeepTogether,GroupKeepTogether are not correctly set. Set KeepTogether = False GroupKeepTogether = None
精彩评论