水晶报表,根据条件抑制详细信息
我有一份包含 7 个详细信息部分的报告。其中一个细节是印在信函背面的免责声明。我需要的是将该免责声明仅打印在其余六个详细信息部分中的 3 个上。其余六个详细信息根据其字母类型打印,并由 P 1-3 和 S 1-3 标识。我只需要在 P 字母上打印免责声明。
我希望有一个类似于
if {RENFUP.RFBAIT} = "S" then 抑制详细信息 g
的公式,我只是不知道如何实现抑制详细信息 g公式的一部分。任何建议将不胜感激。
I have a report that has 7 details sections. One of the details is a disclaimer that prints on the back of the letter. What I need is to have that disclaimer print only on 3 of the six remaining details sections. The six remaining details print based on their letter type and are identified by P 1-3 and S 1-3. I need to have the disclaimer print only on the P letters.
I was hoping there was a formula similar to
if {RENFUP.RFBAIT} = "S" then suppress details g
I just don't know how to accomplish the suppress details g portion of the formula. Any advice would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
抑制公式为:
{RENFUP.RFBAIT}="S"
抑制公式不需要 IF 或 THEN 部分,只需要一个返回布尔值的条件。
Suppression formula would be:
{RENFUP.RFBAIT}="S"
A suppression formula doesn't need the IF or THEN part, just a condition that will return a boolean value.