I'm not completely clear as to how your form and subform is set up. It sounds from your description as though both subforms are independently housed within the same parent form. For this they would have to be correlated. The easiest means of doing this
is via a hidden unbound control in the parent form whose ControlSource is a reference to the key of the first subform, and whose name is the LinkMasterFields property of the second subform. This is an inefficient method of correlation, however, and a far
better solution in terms of performance is to base the second subform on a query which references the key of the first subform as a parameter. The second subform is requeried in the Current event procedure of the first subform.
The other option, and the simplest to implement, is for the second subform to be nested within the first subform, but this requires the latter to be in single form view.
You'll find examples of both solutions as CorrelatedSubs.zip in my public databases folder at:
https://skydrive.live.com/?cid=44CC60D7FEA42912&id=44CC60D7FEA42912!169
If you have difficulty opening the link copy its text (NB, not the link location) and paste it into your browser's address bar.
This little demo file uses data from Northwind to show the order dates per customer in one subform, and the order details per order in the second subform. In one example both subforms are in continuous forms view and correlated as described above so that navigating
to an order date in the first requeries the second; in the other the second subform is nested within the first, which is in single form view and includes an unbound combo box to navigate to an order from those made by the customer currently selected in the
parent form.