G
Guest
I finally have the info below working, however after my 2nd combo box gives
me the user names and I make a selection, the selected name will not populate
in my table but the rest of the data does. The first combo box populates as
well. The problem seems to be isolated to the 2nd box.
What am I doing wrong?
thanks again for the assistance!
Second, to answer your question, add a WHERE condition to the RowSource of
your second combo to include only records where clinic_no matches the first
combo:
... WHERE clinic_no=[Forms]![your form name]![cboClinic]
Then, in the AfterUpdate event for cboClinic, requery the second combo:
cboUser.Requery
Note that the bound column of cboClinic should be the Clinic_No, not
Clinic_Name.
me the user names and I make a selection, the selected name will not populate
in my table but the rest of the data does. The first combo box populates as
well. The problem seems to be isolated to the 2nd box.
What am I doing wrong?
thanks again for the assistance!
Second, to answer your question, add a WHERE condition to the RowSource of
your second combo to include only records where clinic_no matches the first
combo:
... WHERE clinic_no=[Forms]![your form name]![cboClinic]
Then, in the AfterUpdate event for cboClinic, requery the second combo:
cboUser.Requery
Note that the bound column of cboClinic should be the Clinic_No, not
Clinic_Name.