Visual Studio 2008 Crystal Reports Basic(显示数据)
我正在使用 Crystal Reports Basic 和 Visual Studio 2008。当我的数据显示在表格中时,详细信息部分将显示第一个项目,但如果下一个项目与上面的框具有相同的信息,它将显示为空。不过,这只发生在某些行上。如果我对框中的值进行求和,它将显示正确的金额,就好像所有行都正确显示一样。我怎样才能让它显示每个框中的所有信息?
以下是我正在做的事情和问题的简单布局:
Daniel
Payment period Amount Owed Amount Paid
1 $ 200 $0
2 $0
3 $0
4 $ 198 $0
Total Amount Owed: $ 798
我需要它显示所有 200 美元的金额,而不是将其留空。感谢您的任何见解。
I'm using crystal reports basic with visual studio 2008. When my data is displayed in a table the details section will show the first item, but if the next item has the same information as the box above it will show empty. This only happens on some of the rows though. If I do a sum on the the value in the box it will show the correct amount as if all the rows were being displayed properly. How can I have it show all the information in each box?
Here is a simple layout of what I'm doing and the problem:
Daniel
Payment Period Amount Owed Amount Paid
1 $ 200 $0
2 $0
3 $0
4 $ 198 $0
Total Amount Owed: $ 798
I need it to display all the $200 amounts and not leave it blank. Thank you for any insight.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在“公共”选项卡上,每个字段都有一个名为“如果重复则禁止”的属性。确保它未被选中。
There's a property of each field called 'suppress if duplicated' on the Common tab. Make sure it's unchecked.
贝丝让我走上了正确的道路。我确实找到了一种不同的方法来做到这一点,如果重复出现,则无法获得带抑制功能的通用选项卡。
转至“视图”,然后转至“属性窗口”或在该字段的“属性窗口”中按 (F4)。向下滚动到“其他”选项并将“隐藏重复项”设置为“无”。
Beth put me on the right path. I did find a different way to do it, couldn't get the common tab w/ suppress if duplicated to ever appear.
Go to View and then Properties Windows or (F4) in the Properties Window for the field. Scroll down to the Other option and set HideDuplicates to none.