I have a report which has two nested grouping levels like the following schema.
Report
--Group1
----Group2
Inside Group2 there's a field holding the cost of the product
and 3 True/False fields indicating whether the corresponding features of the product are available.
What I want is to add 3 calculated fields inside Group2 each of which will give me the sum of each feature.
I initially tried Dsum() but it doesn't seem to match my case since it doesn't collect the data from the report as Sum() does but you have to specify a "domain" (us. a table) resulting in calculating the total sum and not per Group as in my case.
Any suggestion would be far more than just helpfull.
Thanks in advance
Report
--Group1
----Group2
Inside Group2 there's a field holding the cost of the product
and 3 True/False fields indicating whether the corresponding features of the product are available.
What I want is to add 3 calculated fields inside Group2 each of which will give me the sum of each feature.
I initially tried Dsum() but it doesn't seem to match my case since it doesn't collect the data from the report as Sum() does but you have to specify a "domain" (us. a table) resulting in calculating the total sum and not per Group as in my case.
Any suggestion would be far more than just helpfull.
Thanks in advance