Hide empty field in a report

W

Willem

In a report in Access 97 I would like to hide a field, named "tussenvoegsel",
in areport if there is no value entered (or Null). So that the empty field wil
not use space on the label.

Greetings and thanks,

Willem
 
A

Alex Dybenko

in section Format event write:

me.control_i_want_to_hide.visible=not isnull(me.control_with_test_value)

replace names with real
 
Top