My problem is that the subform control remains blank after opening form, but it is populated when the view is changed from design to form view. This subform is
located on a tab control; another subform located on different page of the same tab control loads just fine. The difference is that the one the doesn't load when the form is opened is based on the third query in a cascade of queries; the first query selects
records in part based on input from an option group, two combo boxes and one textbox on the main form, the second query then calculates the cumulative product of a field and the third query selects certain records from the second query.
The following steps failed to resolve the problem:
Link Master/Child Fields relationship was established (the subform doesn't need to have this link))
On Open & On Load events of the form: Me.Requery
Me.QuantATRSumSub.Requery
I think that the problem may be that the form attempts to populate the subform before the default values of controls that provide the criteria are loaded and
the underlying query can generate the required dataset. Please let me know if you have a solution.