George-Bowyer
Registered User.
- Local time
- Today, 23:40
- Joined
- Dec 21, 2012
- Messages
- 178
I have been given a spreadsheet of people who have attended past events held by the club using my db.
The available information is only FirstName and LastName and the event attended.
I want to add them to my tblEventAttendees table.
I have written the following code that will search my members list for someone with the correct FirstName LastName Combination and add the relevant PeopleID to the spreadsheet data.
However, if there are two or more matches, I would like it to leave RS1!PeopleID blank and check RS1!chkDuplicates
(Or even better, write all of the matching PeopleIDs into a different field)
Could anyone please help me with this last bit, please?
Many thanks.
George
The available information is only FirstName and LastName and the event attended.
I want to add them to my tblEventAttendees table.
I have written the following code that will search my members list for someone with the correct FirstName LastName Combination and add the relevant PeopleID to the spreadsheet data.
Code:
Dim DB As Database
Dim RS1 As Recordset
Dim RS2 As Recordset
Dim strFirstName As String
Dim strLastName As String
Dim intPeopleID As Integer
Dim strCriterion As String
Set DB = CurrentDb()
Set RS1 = DB.OpenRecordset("TrainingAttendanceFull", DB_OPEN_DYNASET)
Set RS2 = DB.OpenRecordset("TblPeople", DB_OPEN_DYNASET)
RS1.MoveFirst
Do Until RS1.EOF
strFirstName = RS1!Name
strLastName = RS1!Surname
strCriterion = "[fldFirstName] = '" & strFirstName & "' AND [fldLastName] = '" & strLastName & "'"
' MsgBox strCriterion
RS2.FindFirst (strCriterion)
If RS2.NoMatch Then
RS1.MoveNext
Else
intPeopleID = RS2!PeopleID
' MsgBox intPeopleID
RS1.Edit
RS1!PeopleID = intPeopleID
RS1.Update
RS1.MoveNext
End If
Loop
However, if there are two or more matches, I would like it to leave RS1!PeopleID blank and check RS1!chkDuplicates
(Or even better, write all of the matching PeopleIDs into a different field)
Could anyone please help me with this last bit, please?
Many thanks.
George