I have a small form that has a few textboxes in the detail part that are controlled by a query. At the form "forms footer" I have a textbox that adds all the textboxes in the detail. The only thing is that if the a textbox is currently blank the textbox in the "form footer" will also be blank because it can not add... I guess numbers with a textbox that is blank.
How can I nest the next textbox into this expression.
below is an expression that if the textbox is null to give it a value of zero, this way the columns will add up.
The way this expression is setup it works... the only thing is that I need to nest another textbox to this expression so that It can also give it a value of zero and add up.
below is my expression, and each [...]is the name of each textbox.
Thank you always
JZ
Testkitt2
How can I nest the next textbox into this expression.
below is an expression that if the textbox is null to give it a value of zero, this way the columns will add up.
The way this expression is setup it works... the only thing is that I need to nest another textbox to this expression so that It can also give it a value of zero and add up.
below is my expression, and each [...]is the name of each textbox.
Code:
=Sum(IIf(IsNull([ContDARTow]),(0),[ContDARTow])+([Sum Of ContParts]+[Sum Of ContLubes]+[Sum Of Cont3rdParty]+[Sum Of ContTires]+[Sum Of ContOthers]))
Thank you always
JZ
Testkitt2