I have a row tablix that is Group On PartNum and then a text field total sum of each PartNum. When I do the Group On, it works correctly but the totals for the PartNum do not sum correctly. It seems to be pulling in only the first value and not the sum. How do I do a Group On and Sum Total on the same row group?
Sample data:
Record | Group | Value
1 | A | 100
2 | A | 50
3 | A | 95
4 | B | 0
5 | B | 25
6 | B | 30
Correct, it doubles, triples, quadruples, etc based on the detail lines that are being returned in the report tables. The grouping gets tricky based on what fields from the detail are showing. Basically, if you create a row group, you should not display that field in any rows below it. Or, not include the detail group if they are not needed.
It seems like if you did a Row Groups by PartNum and then did a sum on field in the row group, it should only total whatever was Grouped By. In my example below it should list one row of Group A and the sum total in another field of 245. I am hiding other PartNum but that shouldnt effect the detail row since it is one for one. In my example below, you could have the same material part number on a job but then you want to group by part and them sum the qty.
Record | Group | Value
1 | A | 100
2 | A | 50
3 | A | 95
4 | B | 0
5 | B | 25
6 | B | 30