Good evening guys
Allow me to salute everyone and the organizers of this wonderful forum and the help they provide to others.
I have a form that is based on displaying information from a table. In this table there is a field named (StatFig) that carries a number for each person and this number must not match the number of another person. I divided the form into two parts, the first part displays all records, and the other part (List) displays people who are similar to the number I mentioned above, and I used the code below through a button. The problem is that this code only works in the case of hovering and moving the mouse pointer for each record, and then I have to press the button and wait for the result and so on. What I want is to click the button and it searches the records and shows the result in (List). That's it, thank you everyone
Allow me to salute everyone and the organizers of this wonderful forum and the help they provide to others.
I have a form that is based on displaying information from a table. In this table there is a field named (StatFig) that carries a number for each person and this number must not match the number of another person. I divided the form into two parts, the first part displays all records, and the other part (List) displays people who are similar to the number I mentioned above, and I used the code below through a button. The problem is that this code only works in the case of hovering and moving the mouse pointer for each record, and then I have to press the button and wait for the result and so on. What I want is to click the button and it searches the records and shows the result in (List). That's it, thank you everyone

Code:
Sub FindDups()
Me.List4.RowSource = ""
Dim db As DAO.Database
Dim rs As DAO.Recordset
Dim strSql As String
Dim strOut As String
strSql = "select * from tblmastr where StatFig = " & Me.StatFig & " "
Set db = CurrentDb()
Set rs = db.OpenRecordset(strSql)
If rs.BOF And rs.EOF Then
GoTo MyExit
End If
rs.MoveLast
rs.MoveFirst
If rs.RecordCount > 1 Then
Do Until rs.EOF
Me.List4.AddItem rs!ID & ";" & rs!StatFig & ";" & rs!FullName
rs.MoveNext
Loop
Else
MsgBox "no Duplicates"
End If
MyExit:
rs.Close
Set rs = Nothing
Set db = Nothing
End Sub
Attachments
Last edited: