Using a macro to print 2 reports

K

kdzobel

I have a table that prints a report when data is present. I want to be able
to check the table if no data print another report. Can you or how do you
setup a macro to do this. Thanks
 
S

Steve Schapel

Kdzobel,

In the Condition column of the macro design, put the equivalent of this...
DCount("*","YourTable")=0
 
Top