Hi Revned,
this what i did as what i understand from the example
I make a textbox under the subform Form Footer
with a control source =sum([Amount])
Open this form by itself (ie. not as a subform), in continuous view (or form
view), but not in datasheet view. Do you see a sum correctly calculated? What
I'm asking you to verify is that you see a total similar to that shown in
Figure 4 of my tutorial.
I have this syntax in my main form
=[qryOrder subform].txtTotal
but still no result is being display
i also try doing
=[qryOrder subform].[frmOrders]!txtTotal
But neither of these forms that you tried are correct. You need something
like this:
=[NameOfSubformObject].[Form]![NameOfTextboxInSubform]
If the name of the control that holds your subform is "qryOrder subform",
then you need to use this:
=[qryOrder subform].[Form]![txtTotal]
Note: The .[Form]! part shown in the middle will never change. It has to
be exactly this, *not* the name of the form.
Tom Wickerath
Microsoft Access MVP
http://www.accessmvp.com/TWickerath/
__________________________________________
Revned said:
Hi, Tom Wickerath
this what i deed as what i understand from the example
I make a textbos under the subform Form Footer
with a contro sourcer =sum([Amount])
I have this syntax in my main form
=[qryOrder subform].txtTotal
but still no result is being display
i also try doing
=[qryOrder subform].[frmOrders]!txtTotal
but still no luck
what else do I miss here???
thanks