Question : Access Report- field value is null label does not show

I have an Access 2003 report and if a field value is null it does not show - is there a way if the field is null that the label associated with it is also not visable

Answer : Access Report- field value is null label does not show

In the Onformat event of the section of the report the field is in (detail, one of the headers footer etc)

Try

 

If IsNull(me.FieldName) then

  me.labelname.visible = False

End if

 

Kelvin

Random Solutions  
 
programming4us programming4us