What does this error mean

  • Thread starter Thread starter Guest
  • Start date Start date
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()
 
Back
Top