Dear Sir,
I have a continuous form base on union of 2 queries.
A field date called [dates] and another textbox called receipt_sum
the source of the receipt_sum is
on the footer of the my form I am trying to assign another textbox with the source below:
An error is always occurred the caption of my textbox on the footer is always [#error]
NB: I am sure about the name of the field.
any idea plz
thank you in advance.
WASSIM S DACCACHE
I have a continuous form base on union of 2 queries.
A field date called [dates] and another textbox called receipt_sum
the source of the receipt_sum is
Code:
=nz(DSum("total","table_mov","[date]=[dates]" & " And" & "[free]=false" & " and" & "[save]=true"),0)
Code:
=sum([receipt_sum])
NB: I am sure about the name of the field.
any idea plz
thank you in advance.
WASSIM S DACCACHE
Comment