admin管理员组文章数量:1289543
I want to group data by dateparts - Year, Month, Date and Hour. It should be like in Excel pivot table, when you click on + and group is hide/unhide. How to do it? Should I prepare date on sql in some way? I have added an example, how it should looks like.
I want to group data by dateparts - Year, Month, Date and Hour. It should be like in Excel pivot table, when you click on + and group is hide/unhide. How to do it? Should I prepare date on sql in some way? I have added an example, how it should looks like.
Share Improve this question asked Feb 19 at 17:59 Novitskiy DenisNovitskiy Denis 1478 bronze badges 2 |1 Answer
Reset to default 0I found a desicion - need to created stepped report Some useful links:
https://sqldusty/2011/07/23/creating-stepped-reports-with-ssrs-2008/
https://learn.microsoft/en-us/sql/reporting-services/report-design/create-a-stepped-report-report-builder-and-ssrs?view=sql-server-2017
本文标签: reporting servicesGroup by dateparts in SSRSStack Overflow
版权声明:本文标题:reporting services - Group by dateparts in SSRS - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741479442a2381078.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
=YEAR(Fields!myDateField.Value)
. You can also use the same expression for the 'cell' value. Create child groups for MONTH(), DAY() and HOUR() then set the initial visibility on each group to whatever you want. – Alan Schofield Commented Feb 20 at 11:08