Iro*_*fin 13 page-break formula-editor crystal-reports
在组专家选项中,我将Keep Group Together设置为可确保设置新页面.
启用双面打印后,如何确保新纸张始终在新纸张上形成?这可以在公式专家中完成吗?有没有办法检查我所在的页面是偶数还是奇数并从那里插入一个页面?只是问一些引导性问题,因为我不熟悉Crystal的公式编辑器.顺便说一句,这是Crystal XI Enterprise Server.
dot*_*joe 19
你可以用做到这一点onfirstrecord,pagenumber和onlastrecord关键字.
在组标题部分"新页面之前"公式...
not onfirstrecord //so every group (except the first) starts on a new page
Run Code Online (Sandbox Code Playgroud)
在"新页后"公式...
//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
Run Code Online (Sandbox Code Playgroud)