Dynamically changinging visible property

  • Thread starter Thread starter nrl
  • Start date Start date
nrl said:
Need to dynamically change the visible property for a section on a report.


If visibility is dependent on a value in each record, then
you can do that in the section's Format event.

If visibility depends only on factors out side the report
(e.g. a form control's value), then you couls alsi use the
report's Open event.

In a VBA event procedurem the code would be like:
Me.Section(N).Visible = <some True/False expression>
 
Back
Top