Cannot be blank in hidden sections

K

knelsen

I have a section that is hidden unless a certain checkbox is true. How can I
make the controls in this section required only when the section is visible?
 
S

ScottD[Interlink Group]

You can get around this problem by using data validation rather than 'Cannot
be blank'. Whatever you use to determine if the section is hidden is used in
the condition such as "If <section Not Hidden> AND
<myRequiredField> is blank" Then show thie error: "cannot be blank"
 
Top