Thanks much to you both.
I really appreciate your time and help.
I passed a shared numeric variable from
sub-report called 'BeginningBalance'
and placed it on the main report's
account group header.
The main report is grouped by account.
(Finally this part is working)
The report should display grand total
of all beginning balance.
year period account beginning_balance balance_debit balance_credit balance_amount YTDTotal
2006 1 1000 10.00 $110.00 ($55.00) $55.00 $60
2006 1 1001 20.00 $100.00 (100.00) 0.00 $20
2006 1 1002 30.00 $40 (10.00) 30.00 $60
1) How to calculate grand totals of shared variable in the main report?
2) The YTDTotal column = beginning_balance + balance_amount
How to calculate grand total of YTDTotal column?
following formula for YTDTotal works fine:
{@GetBeginningBalance} +
Sum ({gl_balance.balance_amt}, {gl_balance.account})
formula to calculate grand total of YTDTotal column
throws following error
Syntax: Sum( {@YTDTotal})
Error: The Summary / Running Total could not be created.
formula to calculate grand total of BeginningGrantTotal column throws following error
Syntax: Sum( {@GetBeginningBalance})
Error: The Summary / Running Total could not be created.
I really appreciate your time and help.
I passed a shared numeric variable from
sub-report called 'BeginningBalance'
and placed it on the main report's
account group header.
The main report is grouped by account.
(Finally this part is working)
The report should display grand total
of all beginning balance.
year period account beginning_balance balance_debit balance_credit balance_amount YTDTotal
2006 1 1000 10.00 $110.00 ($55.00) $55.00 $60
2006 1 1001 20.00 $100.00 (100.00) 0.00 $20
2006 1 1002 30.00 $40 (10.00) 30.00 $60
1) How to calculate grand totals of shared variable in the main report?
2) The YTDTotal column = beginning_balance + balance_amount
How to calculate grand total of YTDTotal column?
following formula for YTDTotal works fine:
{@GetBeginningBalance} +
Sum ({gl_balance.balance_amt}, {gl_balance.account})
formula to calculate grand total of YTDTotal column
throws following error
Syntax: Sum( {@YTDTotal})
Error: The Summary / Running Total could not be created.
formula to calculate grand total of BeginningGrantTotal column throws following error
Syntax: Sum( {@GetBeginningBalance})
Error: The Summary / Running Total could not be created.