I've got a table that looks like this:
TYPE GROUP VALUE
----- ----- -----
0 0 10
0 0 60
0 1 20
1 0 30
1 1 40
1 1 10
I want totals by TYPE and TYPE;GROUP. Created indexes on TYPE & TYPE;GROUP.
object ClientDataSet1: TClientDataSet
IndexDefs = <
item
Name = 'ClientDataSet1Index1'
Fields = 'TYPE'
GroupingLevel = 1
end
item
Name = 'ClientDataSet1Index2'
Fields = 'TYPE;GROUP'
GroupingLevel = 2
end>
IndexName = 'ClientDataSet1Index1'
And created two aggregates
object ClientDataSet1: TClientDataSet
Aggregates = <
item
Active = True
AggregateName = 'Agg1'
Expression = 'SUM(VALUE)'
GroupingLevel = 1
IndexName = 'ClientDataSet1Index1'
end
item
Active = True
AggregateName = 'Agg2'
Expression = 'SUM(VALUE)'
GroupingLevel = 2
IndexName = 'ClientDataSet1Index2'
end>
AggregatesActive = True
Agg2 will not compute because ClientDataset index is set to ClientDataSet1Index1. if ClientDataset.IndexName = ClientDataSet1Index2, Agg2 works, but Agg1 doesn't :( It doesn't seems to allow multiple groupinglevels since I can only specify one clientdataset index at a time.
Am I missing something ?
The workaround is to clone my clientdataset and create the other aggregate in there. Bit of an inconvenience.
[Using D2006]
Thanks