I am using the following statement to pass the value from a ComboBox (Combo38) on the main form to a field on a subform (BridgeMaintItems). The statement below only seems to modify the StrID field in the first record on the subform. For my append query to work correctly, I need to update the StrID field in every record (+/- 40 records).
Me.BridgeMaintItems_subform1.Form![StrID] = Me.[Combo38]
Any thoughts? Seems like it should be easy, but I feel like the syntax is only setting the value in the subform's first record since it is the default "active" record when the subform is open.
Many thanks for your time!
Me.BridgeMaintItems_subform1.Form![StrID] = Me.[Combo38]
Any thoughts? Seems like it should be easy, but I feel like the syntax is only setting the value in the subform's first record since it is the default "active" record when the subform is open.
Many thanks for your time!