F
Faraz A. Qureshi
I have a continuous/tabular form of report with two fields DEBIT & CREDIT
I have created two custom calculating controls in form of textboxes as
follows:
Name of control "DBALANCE"
=IIf([DEBIT]>[CREDIT],[DEBIT]-[CREDIT],0)
and
Name of control "CBALANCE"
=IIf([DEBIT]<[CREDIT],-[DEBIT]+[CREDIT],0)
They work perfectly, however, now, when I insert:
=SUM([DBALANCE]) &
=SUM([CBALANCE])
in the report footer to calculate the grand total the report on being turned
on asks for parameter value for
DBALANCE &
CBALANCE
Any reason and way to resolve?
I have created two custom calculating controls in form of textboxes as
follows:
Name of control "DBALANCE"
=IIf([DEBIT]>[CREDIT],[DEBIT]-[CREDIT],0)
and
Name of control "CBALANCE"
=IIf([DEBIT]<[CREDIT],-[DEBIT]+[CREDIT],0)
They work perfectly, however, now, when I insert:
=SUM([DBALANCE]) &
=SUM([CBALANCE])
in the report footer to calculate the grand total the report on being turned
on asks for parameter value for
DBALANCE &
CBALANCE
Any reason and way to resolve?