What does this error mean

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

What does this error mean:
Object variable or With block variable not set
 
You probably have code like this:
Db.Openrecordset(......
and you have not set the value of Db.

In this case you need to add:
Set Db = CurrentDb()
 

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