Hi,
I'm outputting count data into column groups, using a column filter to show the correct values.
Depot | EquipCount | EGI | WorkCount | Hours |
1 | 4 | IACR | 5 | 7.01 |
1 | 34 | IDGA | 3 | 17.88 |
1 | 35 | MEAE | 3 | 14.22 |
1 | 22 | MHAG | 4 | 4.53 |
1 | 55 | MHGL | 19 | 100.18 |
1 | 11 | MHWA | 1 | 5.48 |
1 | 10 | MPAA | 1 | 5.55 |
The row group is on the Depot. This is only ever on a single value.
The column group is on the EGI. This could be one of up to 8 values.
Where I run a filter on a column group by a single value, e.g. EGI = IACR, I return the Equipcount expected.
Where I use the IN operator to select mutiple values, e.g. MEAE and MHAG, I get two columns with the EquipCount in each, where I want just one column with the two values added together.
The column cell contains the expression
=Sum(Fields!EQUIPCOUNT.Value).
What are I doing wrong in my grouping that the two equipment count values are not added together?
Thanks
Neil