SSRS Sum in table group
Asked Answered
Y

1

6

I am working on SSRS reporting services. I have a table on which I applied group. Originally I had this data:

enter image description here

I changed something in my tablix and created a tablix and added a parent group of Age i.e. left column and then in the right column, I applied an expression: =SUM(Fields!AgeTotal.Value, "Group1") which made the result like this: enter image description here

Now I want 3,3,3 and 2,2 not to repeat and make them 1 row of each group. Like this: enter image description here

UPDATE: enter image description here

Yaekoyael answered 6/6, 2011 at 13:16 Comment(0)
P
10

Right Click on the details cell and select add Total, then right click on the entire details rows and change it's visibility to Hide. This should do the trick!

EDIT

Setp by step tutorial with Image:

First image example: on the left the result you want, on the right the result you get from a simple grouping.
I'm getting the sum(but you could use a count or whatever aggregation you want) of the field lam_larghezza (which, for your information, is a width) group by different lam_spessore values (which, is a thickness)

I'm sorry but mi IDE is in Italian so here a simple translation:

Aggiungi -> Add
Gruppo -> Group
Righe -> Rows
Raggruppa per -> Group By
Totale -> Total
Dividi Celle -> Split Cell
Visibilità Righe -> Row visibility

enter image description here

Let's start!

Create the dataset for the report and clean the report

Add a table to the report

enter image description here

Add the detail field in the data row

enter image description here

Right click on the full row
Add group -> Row group -> father group -> group by grouping field (should be age)

enter image description here

enter image description here

Click on the detail cell (only the cell not the entire row, and remember that the cell had to be highlighted not the text inside the cell, because two different contex menu appear) -> Add Total

enter image description here

You now have 1 grouping cell and two detail cell

split the grouping field cell

enter image description here

set the visibility of the detail row to hidden

enter image description here

And you are done!

enter image description here

Pewit answered 7/6, 2011 at 9:47 Comment(13)
This could work if Total works for each group individually. Total displays the total at the footer of the table. The answer of total is 5.Yaekoyael
i made a test and total works for groups too... can you show the layout of the report?Pewit
added a step by step solutionPewit
em sorry il_guru but some things are really confusing. e.g. Step 3 Add the detail field in the data row and some other as well in coming steps. I will be very thankful to you if you add screen shots with these steps. because im not fully getting the steps. Thank you so much for your concernYaekoyael
Not have time now at work to do screens, i maybe can provide them later or tomorrow. In my simple example i consider you have two field in the query, the one your are grouping on and the value you are counting/summing (eg: Age, Name and you want the count of all the people with that age), so the detail field is Name while the grouping field is Age. Hope this could help for nowPewit
In my first picture, I have shown two columns, Age and total. Are you talking about these two fields returned by query? if im not wrongYaekoyael
please take your time and provide screenshots whenever get free from your work,it would b great if you can provide them today or tomorrow. Thanks a lot anyway.Yaekoyael
i think i cannot do more than thisPewit
Thanks il_guru, you helped a lot. One last thing to ask is: in my IDE, I have Add Total option disabled on the cell on which you applied add total. I can only set add total on group field. Hope you are getting. You can see my edited question for that. If you find any reason for this, please let me know, Otherwise you really did the best for me. Thanks a lot :)Yaekoyael
I noticed that if in your cell you put an expression it disable the Add Total option. Is this?Pewit
No, it does not allow to add total on any cell either having expression or not except Group cell. e.g. I can add total in only lam spessoreYaekoyael
it's okay no problem. You helped a lot. Thank you so much :)Yaekoyael
I hope this answer can help many other people so I'm marking this as answer .Yaekoyael

© 2022 - 2024 — McMap. All rights reserved.