Macro Condition to detect a query with 0 records

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

Guest

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?
 
Robert,

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