A family of Microsoft relational database management systems designed for ease of use.
I'm almost 70 years old and memory isn't my strongest ...
That makes two of us. Now what was I about to say? Oh yes, I remember....
To illustrate the points Gina and Gary have made, below is a clip from one of my online demo files of a simple form with a subform on a tab page. I've temporarily added a hidden control to the subreport's footer with a ControlSource property of =Count(*) to count the number of rows currently in the subform. In the parent form I've added a text box which references this control to show the number in the parent form even when the subform is not visible.
1. The subform control is selected. Note from its properties sheet that its name property is sfcEvents. This differs from the name of the underlying source form object, which is fsubEvents.
2. Note that the expression used as the ControlSource of the text box in the parent form is =[sfcEvents].[Form].[txtEventCount], i.e. it references the hidden control in the subform via the Form property of the subform control.