Printing ?

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

Guest

I'm tryin to not print a label on a report if the field fld_temp is null. I
tried the following in the on open of the report, but it doesn't work

If [fld_temp] Is Null Then
ActualSize.[L1] = "0"
 
Sash said:
I'm tryin to not print a label on a report if the field fld_temp is null. I
tried the following in the on open of the report, but it doesn't work

If [fld_temp] Is Null Then
ActualSize.[L1] = "0"

Just modify the query that the report is based on to exclude records where
fld_temp is null.
 

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

Back
Top