C
Connell Giacomini
I need two totals in my report footer. The first adds the field [Amount],
and works fine.
The second is intended to also add the field [Amount], but only where the
checkbox field [Pledge] is checked. I am using the following espressions:
Total Amount: =IIf([Pledge]=False,Sum([Amount]),0) (This works
perfectly)
Total Pledged: =IIf([Pledge]=True,Sum([Amount]),0) (This always produces a
total of 0.00 whether the checkbox [Pledge] is checked or not.
Any idea what is wrong with the second expression?
and works fine.
The second is intended to also add the field [Amount], but only where the
checkbox field [Pledge] is checked. I am using the following espressions:
Total Amount: =IIf([Pledge]=False,Sum([Amount]),0) (This works
perfectly)
Total Pledged: =IIf([Pledge]=True,Sum([Amount]),0) (This always produces a
total of 0.00 whether the checkbox [Pledge] is checked or not.
Any idea what is wrong with the second expression?