I've done some research on this but I don't think I'm typing in the right thing to find what I am after.....
我已经对此做过一些研究,但我不认为我正在输入正确的东西来找到我之后的......
Basically I have a working report which displays the order information based on the OrderID (parameter).. so 1001, 1002 etc. What im now trying to do is group all of these together between a date range..
基本上我有一份工作报告,根据OrderID(参数)显示订单信息..所以我现在要做的是将所有这些组合在一个日期范围之间。
So for example I could have 50 unique Orders in a specified week. I want to now generate a 50 page document (PDF), displaying the full Order Report for each unique order. NOT IN A TABLE VIEW.
例如,我可以在指定的一周内拥有50个唯一订单。我现在要生成一个50页的文档(PDF),显示每个唯一订单的完整订单报告。不在表格视图中。
so my question is: is this even possible and if yes, could someone please point me in the right direction..... Thankyou for any help.
所以我的问题是:这是否可能,如果是的话,有人可以指出我正确的方向.....谢谢你的任何帮助。
1 个解决方案
#1
You can pass date range as parameters to query, bring bring back data to report, and use grouping controls to show those 50 reports on every page. Use can use 'List' for that purpose. Put existing report into a list and just pass complete data source to the list.
您可以将日期范围作为参数传递给查询,将数据带回报告,并使用分组控件在每个页面上显示这50个报告。使用可以使用'List'来实现此目的。将现有报告放入列表中,然后将完整数据源传递到列表中。
If you can pull single order data, say order number 1001, in a single row, then it's quite easy to build report. Otherwise you may have to use sub reports to show tabular data from each order.
如果您可以在单行中提取单个订单数据(例如订单号1001),那么构建报表非常容易。否则,您可能必须使用子报告来显示每个订单的表格数据。
Let me know if you have any difficulties doing this.
如果您在执行此操作时遇到任何困难,请告诉我。
#1
You can pass date range as parameters to query, bring bring back data to report, and use grouping controls to show those 50 reports on every page. Use can use 'List' for that purpose. Put existing report into a list and just pass complete data source to the list.
您可以将日期范围作为参数传递给查询,将数据带回报告,并使用分组控件在每个页面上显示这50个报告。使用可以使用'List'来实现此目的。将现有报告放入列表中,然后将完整数据源传递到列表中。
If you can pull single order data, say order number 1001, in a single row, then it's quite easy to build report. Otherwise you may have to use sub reports to show tabular data from each order.
如果您可以在单行中提取单个订单数据(例如订单号1001),那么构建报表非常容易。否则,您可能必须使用子报告来显示每个订单的表格数据。
Let me know if you have any difficulties doing this.
如果您在执行此操作时遇到任何困难,请告诉我。