Reputation: 1
I have a report like this
Classification Item Qty Weight (Kg) Value
I want to add subtotal per Classification and grandtotal to both Weight and Value. How?
Upvotes: 0
Views: 2657
Reputation: 6706
To add a subtotal for Classification you need to set the SumAll
property of the corresponding field to Yes. However you would need to calculate grand totals of Weight and Value manually, you can display them in a separate ProgrammableSection
by running element.execute(...);
from the fetch()
method.
Upvotes: 2