G
Guest
I am using a text box to display a control total on a form. This control
refers to a text box an a subform attached to the main form. The routine
works perfectly well unless the underlying query returns no records.
I have tried the following, without success, to try and force a zero into
the text box
Iif([Adjustment]) Is Null,0,Sum([Adjustment])
IIf(IsEmpty(Adjustment)=True,0,Adjustment)
Any advice would be appreciated.
refers to a text box an a subform attached to the main form. The routine
works perfectly well unless the underlying query returns no records.
I have tried the following, without success, to try and force a zero into
the text box
Iif([Adjustment]) Is Null,0,Sum([Adjustment])
IIf(IsEmpty(Adjustment)=True,0,Adjustment)
Any advice would be appreciated.