
Originally Posted by
June7
Try:
Private Sub cmbMRN_AfterUpdate()
With Me.RecordsetClone
.FindFirst "MRN='" & Me.cmbMRN & "'"
If Not .NoMatch Then Me.Bookmark = .Bookmark
Me.FollowUp_subform.Form.cmbDate.Requery
Me.FollowUp_subform.Form.cmbdate = Null
Me.FollowUp_subform.Form.Filter = "DateExam=#1/1/1900#"
Me.FollowUp_subform.Form.FilterOn = True
End With
End Sub
Private Sub cmbDate_AfterUpdate()
'Find the record that matches the control.
Me.FilterOn = False
With Me.Recordset.Clone
.FindFirst "[ID] = " & Me.[cmbDate]
If Not .NoMatch Then Me.Bookmark = .Bookmark
End With
End Sub
Also, appears I had an error in the cmbDate_AfterUpdate code. Field name is not [RecordID], it is just [ID].