Is it possible to sum a value from a calculation in a textbox in a report
I use the following formula and cannot use =Sum([totals]). I ignore negative values with this formules when subtracting
The Totals textbox code is:
please assist
I use the following formula and cannot use =Sum([totals]). I ignore negative values with this formules when subtracting
The Totals textbox code is:
Code:
=IIf([issued]-[on_hand]<0,0,[issued]-[on_hand])
Comment