How does Access declare the variables for the entries in tables?

C

Carla

I am trying to set up a macro that will run a different query if the first
one turns up null. I cant figure out how to declare that the query result is
null so that my if statement will work.
 
K

Ken Snell [MVP]

Check out the DCount function in Help. It will return a value of zero if
there are no records returned by the query.
 
Top