hidden fields on a form

S

Sheri

Thanks for the help. I am using Office 2003. I have a
yes/no question on my form. If the answer is no the user
goes on to the next question. If the answer is YES I would
like two additional questions to pop onto the form. I've
done this before but can't remember how. Please help and
thanks !
 
P

Phil

Hi,
On Question_beforeUpdate :
If Me.Question = -1 then
Me.Q1.visible = yes
Me.Q2.visible = yes
End if
 
Top