Reputation: 1
I need your help in my RTF template that has a sum for every each segments.
Here's the report layout: enter image description here enter image description here
I would appreciate any help. I'm not sure if the sum is already not working in the BIP reports or I just misconfigured something in the template.
Thank you in advance.
My expectation is it would sum the values in a column.
Upvotes: 0
Views: 128
Reputation: 7846
Try it like this:
<xsl:value-of select="sum(current-group()/ENTERED_DEBITS)"/>
Upvotes: 0