What does this error mean

P

PC Datasheet

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()
 
Top