I have created a report with a group in it:
group1.Grouping.Add(new GroupExpression("id1"));
When I run the report the data comes out in the groups I would expect, eg
Group1
data
Group2
data
Group3
data
I then add a sort expression:
group1.Sorting.Add(new SortExpression("id2"));
and now when I run the report I get fragmented groups:
Group1
data
Group2
data
Group1
somemore data
Group3
data
Group2
somemore data
How do I correctly sort data within a group?
group1.Grouping.Add(new GroupExpression("id1"));
When I run the report the data comes out in the groups I would expect, eg
Group1
data
Group2
data
Group3
data
I then add a sort expression:
group1.Sorting.Add(new SortExpression("id2"));
and now when I run the report I get fragmented groups:
Group1
data
Group2
data
Group1
somemore data
Group3
data
Group2
somemore data
How do I correctly sort data within a group?