Hi everyone,
I'm trying to limit the values in a combo box (Combo33) based on the previously-selected value of a different combo box (Combo42) in the same form (FRM_TRAINING_PROTOCOL). In the row source for Combo33, I have:
(TBL_PROTOCOL is a list of protocols by study that users need to be trained in, and the training record is contained in TBL_TRAINING_PROTOCOL.)
Back in form view, though, Combo33 is not updating based on the value of Combo42. What do I have wrong in the above code?
Thanks for your help!
I'm trying to limit the values in a combo box (Combo33) based on the previously-selected value of a different combo box (Combo42) in the same form (FRM_TRAINING_PROTOCOL). In the row source for Combo33, I have:
Code:
SELECT TBL_PROTOCOL.[PROTOCOL NUMBER] FROM TBL_PROTOCOL WHERE (((TBL_PROTOCOL.[STUDY NAME])=[Forms]![FRM_TRAINING_PROTOCOL]![Combo42])) ORDER BY TBL_PROTOCOL.[PROTOCOL NUMBER];
Back in form view, though, Combo33 is not updating based on the value of Combo42. What do I have wrong in the above code?
Thanks for your help!