I work on an accounting project in .NET.
I want to sum all transaction and its opening balances.
I use summary but it Allows only one column..
views:
223answers:
1
A:
You can summarize within formulas, so long as the formula field is present in the report footer. When using Sum()
CR knows to evaluate the expression for all records returned.
So you would create a formula for the report footer, and the formula code would be something like:
Sum({@TransactionAmt1}) + Sum({Transactions.Amount}) + Sum({@AnotherFormula});
Heather
2010-02-12 14:42:54