Sum in group footer's child band
Posted: Fri Jun 26, 2015 1:02 pm
Looks like a bug to me, or am I doing something wrong?:
I would like to use child bands for group footers. Unfortunately Sum() on a group footers child band does not sum up the totals from the group, but from the whole dataset.
I've attached an example for the following sample data:
Tobias
I would like to use child bands for group footers. Unfortunately Sum() on a group footers child band does not sum up the totals from the group, but from the whole dataset.
I've attached an example for the following sample data:
Code: Select all
var stiReport = new StiReport();
stiReport.RegData("Foo", new []
{
new { Group = "A", Value = 1.00m},
new { Group = "A", Value = 2.00m},
new { Group = "A", Value = 3.00m},
new { Group = "B", Value = 1.00m},
new { Group = "B", Value = 2.00m},
new { Group = "B", Value = 3.00m},
});
stiReport.Design(); // Ok