Macro Condition to detect a query with 0 records

R

Robert_L_Ross

What is the Condition I would use to determine if a query has 0 records? And
what would the reverse be...to determine if the query has at least 1 record?
 
S

Steve Schapel

Robert,

Like this...
DCount("*","NameOfYourQuery")=0
DCount("*","NameOfYourQuery")>0
 

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

Top