M Marshall Barton Feb 8, 2008 #2 nrl said: Need to dynamically change the visible property for a section on a report. Click to expand... 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>
nrl said: Need to dynamically change the visible property for a section on a report. Click to expand... 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>