Add a textbox into the Form footer of the subform and set the controlsource to ...
=Count([anyNotNullField])
Say this textbox is called txtCount.
In the main form header add a textbox with the controlsource of...
=forms!mainformname!subformcontainername.Form!txtCount
subformcontainername is the name of the subform control on the main form that holds the subform. It might be the same name as the subform but if they are different it is the subform (container) control name that must be used,
MCaliebe
ASKER
This gets me my count, however how do I get a 0 when no records exists. Currently, the count text box in my sub form foote is blank and the reporting text box in my main form is Error.
=Count([anyNotNullField])
Say this textbox is called txtCount.
In the main form header add a textbox with the controlsource of...
=forms!mainformname!subfor
subformcontainername is the name of the subform control on the main form that holds the subform. It might be the same name as the subform but if they are different it is the subform (container) control name that must be used,