Empty Recordset

  • Thread starter Thread starter Jim Pockmire
  • Start date Start date
If you're using OpenRecordset to open it, try:

Set rs = db.OpenRecordset(SQL)
If rs.BOF And rs.EOF Then
' It's empty
Else
' It's not empty
End If

If you have something else in mind, please give more details.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top