Crystal Reports 中的强制抑制
如何使用公式抑制详细信息部分?
在我的报告中,可能会出现详细信息部分为空的情况。 唯一的问题是,CR 想要至少显示一次详细信息部分,因为该部分中有标签和一些图形......
How can I suppress a Details Section with a formula?
In my reports it may happen that a details section is empty. The only problem is, that CR wants to show the details section at least once because there are labels and some graphics in the Section...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果在“设计”视图中右键单击“详细信息”部分,则可以选择“部分专家”,然后指定一个公式,如果该公式为真,则将抑制“详细信息”部分。 (您没有说明您拥有哪个 Crystal Reports 版本,这些说明适用于 v10。)
您可以使用以下公式:
If you right click on the Details section while in Design view you can choose Section Expert and then specify a formula which, if true, will suppress the Details section. (You don't say which Crystal Reports version you have, these instructions are for v10.)
You could use this formula for example:
就像保罗莫里斯所说......去部分专家并提出细节部分的抑制公式。 输入要抑制时为 true 的布尔表达式,例如...
isnull({someFieldThatIndicatesTheDetailsWillBeEmpty})
like paulmorris said...go to the section expert and bring up the suppress formula for the details section. Enter a boolean expression that is true when you want to suppress, such as...
isnull({someFieldThatIndicatesTheDetailsWillBeEmpty})