SSRS: Horizontal alignment on a group

我是研究僧i 提交于 2019-12-11 10:07:06

问题


On my dataset I select information from four different years sorted by date and how many subscriptions I had on said date, which looks something like this:

Date        Year    Subs    Day
15/09/2014  2015    57      1
16/09/2014  2015    18      2
17/09/2014  2015    16      3
14/09/2015  2016    10      1
15/09/2015  2016    45      2
16/09/2015  2016    28      3
12/09/2016  2017    32      1
13/09/2016  2017    11      2
14/09/2016  2017    68      3
24/08/2017  2018    23      1
25/08/2017  2018    53      2
26/08/2017  2018    13      3

What I'm trying to do is create an 'Year' Column Group to align them horizontally, but when I do that, this is the result:

result

Expected result:

expected result

Is this achievable in SSRS? I've tried removing the group =(Details), which gives me the desired result, except it only returns one line of information.

Any insight aprreciated.


回答1:


By default, the Details group causes you to get one row per row in the dataset. In your case, I would suggest grouping the Rows by the Day column and create a column group by Year.

First, create the two groups and add columns inside the column group.

Then, add a row outside and above the Day row group. Place the headings here and then delete the top row. It should look like this:

Now these 4 columns will repeat to the right for each year and you will get rows based on the number of days in your dataset.



来源:https://stackoverflow.com/questions/48890213/ssrs-horizontal-alignment-on-a-group

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!