I have a module which creates an ADODB recordset from a small SQL statement. I then need to find a specific record within the recordset. I started using the find operator of the recordset to do this and it worked.
The problem is, for this to work correctly I need to search with two criteria (PersonID and RequirementID). I can't seem to find the syntax for using more than one criteria. Does anyone know how to do this or perhaps a better way of performing a search on a recordset? Any help is appreciated. Thanks
Code:
rsGetReading1.Find ("sys_Requirement_ID = " & intReqID & "")