Printing ?

S

Sash

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"
 
R

Rick Brandt

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.
 
Top