To hide/unhide a control based on another control's value do the
following:
(1)Select the control to be conditionally hidden (in this case your
section)
(2)In the Format menu select Conditional Formatting
(3)Click on the Add button to add a rule
(4)Build the rule for condition and check the "Hide this control"
checkbox.
For example, suppose I have a check box called chkHide whose value is
TRUE when checked and FALSE when unchecked. Suppose further that I
wanted to hide a textbox when chkHide is checked. I would select the
textbox, then choose Conditional Formatting from the Format menu.
Click on the Add button to create a rule. Then build the rule as
follows:
(A)From the first list box choose "Select Field or Group" then select
chkHide from the DOM
(B)Choose "is equal to" from the second list box
(C)Choose "TRUE" from the third list box
(D)Check the "Hide this control" checkbox.
(E)Click OK and then Click OK again in the Conditional Formatting
dialog.
Hope this helps.
Michelle