问题描述
我想创建一个表格格式的报告.假设如果我选择一个参数stardate为2011年1月1日,结束日期为2011年3月3日,并且设备ID = 1意味着基于这些参数,我需要过滤数据并显示每天的能耗,如下所示
------------------------
Jan
day1 day2 day3 day4 .......... day 31周一总消费量
值
-----------
二月
day1 day2 day3 day4 .......... day 28周一总消费量
值
--------
3月
day1 day2 day3 day4 .......... day 28周一总消费量
值
----------------
如何在SSRS 2005中生成此类报告?
谢谢&问候,
vinya
Hi ,
I would like create a Tabular format report.Suppose If I choose a parameter stardate is 1/1/2011 ,end date is 31/3/2011 and the device Id =1 means, based on those parameter ,I need to filter the data and display energy consumption of each day like below
------------------------
Jan
day1 day2 day3 day4................... day 31 total mon consumption
value
-----------
Feb
day1 day2 day3 day4................... day 28 total mon consumption
value
--------
Mar
day1 day2 day3 day4................... day 28 total mon consumption
value
----------------
How to generate this kind report in SSRS 2005 ?
Thanks & Regards,
vinya
推荐答案
SELECT MONTH(mydate), sum(consumption)
FROM mytable
GROUP BY MONTH(mydate)
WHERE mydate between startdate and enddate
这篇关于表格格式报告的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!