Sorry fellas I'm sure this has been answered somewhere but I can't find a clear example.
I have a grid full of data, what I would like to do is group it by a column and to have the group header show sum() data in the column it relates to rather than appended to the end of the group header as its hard to read when the group headers are a different length.
Hope this makes sense, for example if I had the following grid of data
Project Time Value
Red 2 3
Red 2 3
Orange 4 10
Orange 4 10
I would want to see this when the Project field is grouped
Project Time Value
+Red 4 6
+Orange 8 20
Instead of
Project Time Value
+Red,Time:4,Value:6
+Orange,Time:8,Value:20
You can see the values are in their relevant column, I've done it with other grids just wondering how to do it with this one,
Ta
I have a grid full of data, what I would like to do is group it by a column and to have the group header show sum() data in the column it relates to rather than appended to the end of the group header as its hard to read when the group headers are a different length.
Hope this makes sense, for example if I had the following grid of data
Project Time Value
Red 2 3
Red 2 3
Orange 4 10
Orange 4 10
I would want to see this when the Project field is grouped
Project Time Value
+Red 4 6
+Orange 8 20
Instead of
Project Time Value
+Red,Time:4,Value:6
+Orange,Time:8,Value:20
You can see the values are in their relevant column, I've done it with other grids just wondering how to do it with this one,
Ta