How can I selectively create a total for certain accounts on my general ledger financial statement but not show the individual accounts on my report?
If you don't wish to list the individual accounts and/or the accounts are scattered in the chart, do something like this:
Code: Select all
!@Add([PERIOD_BAL:11000], 0, &GRPTOTAL)
!@Add([PERIOD_BAL:11000], [&GRPTOTAL], &GRPTOTAL)
!@Add([PERIOD_BAL:11000], [&GRPTOTAL], &GRPTOTAL)
!@Add([PERIOD_BAL:11000], [&GRPTOTAL], &GRPTOTAL)
TOTAL OF GROUP XYZ: [&GRPTOTAL]
Code: Select all
!@Add([PERIOD_BAL:<your_chart_code_here>], [&GRPTOTAL], &GRPTOTAL)
The text:
Code: Select all
TOTAL OF GROUP XYZ: [&GRPTOTAL]
Code: Select all
TOTAL OF VAN OPERATING COSTS: [&GRPTOTAL]