Viewing and Printing "No Data in Forms"

  • Thread starter Thread starter Greg Gibney
  • Start date Start date
G

Greg Gibney

Being that alot of data is not there.... we have made a
habit of putting in "0 records". 0 records is basically a
placeholder that will have a persons name and a 0 in all
the relative fields. Now if I don't use the 0 records
then I have a form with virtually no data behind it (a
query that contains nothing). Is there a way to make
these forms print with no data and just containing
defaults of 0 as a place holder ? Any help would be
appreciated.

Thanks,

Greg
 
Are you actually printing forms or reports? You can add a text box to a
report header
=IIf([HasData],"","0 Records")
 
Back
Top