M mike Sep 13, 2003 #1 I'm doing a findfirst on a recordset, but if the recordset comes back empty, how can I check for it?
K Ken Snell Sep 13, 2003 #2 If both the BOF and EOF properties of a recordset are True, you have an empty recordset.
S Steve Schapel Sep 13, 2003 #3 Mike, If rst.RecordCount > 0 Then rst.FindFirst <criteria> etc - Steve Schapel, Microsoft Access MVP