Hi, I have a single form - Customers and I wish to find out all the records which satisfied the value selected from combo box.
The result displayed only show the first record which satisfied the criteria. How can I make the rest of the records that also satisfied the criteria to appear? Please advise on this, thank you very much.
Code:
Private Sub cboFindFirstName_AfterUpdate()
DoCmd.ShowAllRecords
Me!ContactFirstName.SetFocus
DoCmd.FindRecord Me!cboFindFirstName
'Set value of combo box equal to an empty string
Me!cboFindFirstName.Value = ""
End Sub
Comment