In Access, how do I set up a form pathway for field responses

M

mstoller213

I need to create a path based on field responses in an Access form. ie if
the answer is no, then answer next field, if it is yes, then automatically
skip next five questions on form. The skipped fields or questions should
then gray out and become unanswerable.
 
D

Daniel

You need to code it.

You'd used the afterupdate event on a given control then use the setfocus
method to move the cursor to another control and use the Enabled control
property to control whether or not other controls remain active or not.
 
Top