A
an
Hi!
I have a continuous form with Check Box named ExecProc.
This form has a command button with:
If Me!F_Proc!ExecProc = No Then
DoCmd.OpenForm "F_NoExecProc" 'alert form
Else
DoCmd.OpenQuery "Q_ExecProc" ' AppendQuery
Enf If
If all check boxes = No work fine and show us the alert form;
If only one check box = Yes, don't open the form and run Q_ExecProc.
I would like don't run the query if only one check box = No.
Thank you in advance.
an
I have a continuous form with Check Box named ExecProc.
This form has a command button with:
If Me!F_Proc!ExecProc = No Then
DoCmd.OpenForm "F_NoExecProc" 'alert form
Else
DoCmd.OpenQuery "Q_ExecProc" ' AppendQuery
Enf If
If all check boxes = No work fine and show us the alert form;
If only one check box = Yes, don't open the form and run Q_ExecProc.
I would like don't run the query if only one check box = No.
Thank you in advance.
an