I can successfully loop through a recordset and display each record using the code: Debug.Print rsC![activityid], rsC![Timeslot], rsC![Activity]
What I can't figure out is the syntax for findfirst
I want to loop through each item in the recordset rsC and compare rsC![activityid], with another recordset, rsB, that also has an ID field rsB![activityid]
Can anyone help me with the systax for the findfirst part please (I'm fine with the looping part, I just can't get the findfirst syntax correct).