Nothing query

  • Thread starter Thread starter Jarod
  • Start date Start date
You might open a recordset based on the query and test if both BOF and EOF
are True.
 
Try:

DCount("*", "YourQuery")

It should give the number of rows returned by your Select Query, including 0
for no rows returned.
 
Back
Top