Creating an interactive flow-chart

N

New to Access

I'd like to create a form requiring input based on responses t
Statements - essentially a flowchart that requires a particular ste
if a Yes response, and a different step if a No response. i.e., I
yes, move on to Statement 2, if No, go to Statement 6. Ideally, I'
like to use text boxes for the statements and check boxes for th
yes/no's. Any suggestions on how to require certain steps dependin
on the YES or NO selection
 
P

Patrick Stubbin

use the on click event and then depending if yes or no, use docmd.gotocontrol
function
if me.yes then
docmd.gotocontrol ("A")
else
DoCmd.gotocontrol ("B")
endif
 
Top