使用双面打印在报表组之间插入分页符 [英] Insert page breaks between report groups with two-sided printing

查看:165
本文介绍了使用双面打印在报表组之间插入分页符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在小组专家选项中,我设置了保持小组在一起",以确保设置了新页面.

In group expert options I have set Keep Group Together, which makes sure a new page is set.

启用双面打印后,如何确保新的组始终形成在新的纸上?可以在公式专家中完成吗?有什么方法可以检查我所在的页面是偶数还是奇数,然后从那里插入页面?因为我不熟悉Crystal公式编辑器的功能,所以只问一些主要问题.顺便说一句,这是Crystal XI Enterprise Server.

With two-sided printing enabled, how can I make sure that a new group always forms on a new sheet of paper? Can this be done in the formula expert? Is there some way of checking if the page I'm on is even or odd and insert a page from there? Just asking leading questions because I'm not familiar with what is possible with Crystal's formula editor. BTW, This is Crystal XI Enterprise Server.

推荐答案

您可以使用onfirstrecordpagenumberonlastrecord关键字来完成此操作.

You can do this with the onfirstrecord, pagenumber and the onlastrecord keywords.

在组标题部分的之前有新页"公式中...

On the group header section "New page before" formula...

not onfirstrecord //so every group (except the first) starts on a new page

在之后的新页面"公式上...

On "New page after" formula...

//to keep the group from starting on even page but make sure the last page is not blank
remainder(pagenumber, 2) = 1 and not onlastrecord 

这篇关于使用双面打印在报表组之间插入分页符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆