添加公式字段会抑制整个记录
我正在尝试使用 sql 表达式向报告添加值,或者也尝试使用数据库字段。报告上的某些记录会匹配,有些则不匹配。我希望它在匹配的地方显示这个值。问题是,当我添加此公式或数据库字段时,整行都会被抑制。我该如何解决这个问题?谁能就这个问题提供一些指导?
I'm trying to add a value to my report using an sql expression, or also tried using a database field. Some of the records on the report will have a match, and some will not. I want it to display this value where there is a match. Problem is, when I add this formula or database field, the entire row gets suppressed. How can I fix this? Can anyone provide some guidance on this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是 Crystal Reports 中的所有链接默认都是内部联接。在这种情况下,只有部分记录有匹配,您需要使用左外连接,以免将不匹配的记录置为空。
http://forums.blackbaud.com/forums/t/8825.aspx
The problem is that all links in Crystal Reports are inner joins by default. In this case, where only some records have a match, you need to use a left outer join so as not to null non-matching records.
http://forums.blackbaud.com/forums/t/8825.aspx