【发布时间】:2012-02-21 23:05:36
【问题描述】:
我想显示一份主数据和一份明细数据。
销售表中的主数据和电话表中的详细数据 两个表之间没有关系,只有一个字段在两个表中是公共的,即国家代码。
在第一页我想显示有关英国的数据
UK details it is title country wise
-----------------------------------------------------------------------
Total Sale : 112300 Diag sale: 1300 Reman sale : 10000
Caller Name incomming call out going call call transfer
---------------- --------------------- ------------------- ----------------
keith 5 5 2
john 3 2 1
sam 8 4 5
在下一页将显示相同的数据,但将显示美国数据。因此,通过这种方式,特定国家/地区的数据将显示在每个页面中。 我是 ssrs 的新手,所以我不知道如何使用 ssrs 设计此报告
我的商店将提供数据,它只需要一个参数,比如国家代码。如果我传递国家代码,如“GB,US,DE”,那么我的 sp 将返回两个结果集,第一个结果集将从销售表中获取国家 GB、US 和 DE 之类的数据
total_sale, diag_sale, Reman_Sale, countrycode
112300 1300 10000 GB
10200 1200 4700 US
4200 1500 5600 DE
第一个结果看起来像上面的输出
第二个结果集看起来像
callername incommingcall outgoingcall calltransfer countrycode
keith 5 5 5 GB
john 3 2 1 US
sam 8 4 5 DE
所以详细讨论我如何使用 ssrs 设计这种类型的报告。
【问题讨论】:
标签: asp.net ssrs-2008 reporting-services