Page 1 of 1

Using Sum in a Calculated Column

Posted: Mon Jan 14, 2008 6:38 pm
by shmuly
I am trying to create a calculated field that summarizes a field. I created a calculated column and for the value I wrote the following:
Sum(invoice.amount), when I include this calculated field in my report, the report does not run. Are we able to create a calculated field with a total of sum? If yes, what am I doing wrong?

Thanks in advance

Using Sum in a Calculated Column

Posted: Tue Jan 15, 2008 5:01 pm
by Vital
Please use following expression:

Code: Select all

Totals.Sum(invoice, invoice.amount)
Thank you.