Simple issue but I have spent hours and hours trying to find the answer and I have come up empty-handed.
I need the 3rd combo box to be cascaded off the 2nd. The 3rd is to display the ID based off what the 2nd combo box is. For some reason when I copy the steps I took to cascade the 2nd and try to apply them to the 3rd, it just doesn't work.
First cmb:
SELECT ATU.[Serial #], ATU.[Serial #] FROM ATU GROUP BY ATU.[Serial #], ATU.[Serial #] ORDER BY ATU.[Serial #];
Second cmb:
SELECT ATU.JCN, ATU.JCN FROM ATU WHERE (((ATU.[Serial #])=[Forms]![Single]![Serial])) GROUP BY ATU.JCN, ATU.JCN ORDER BY ATU.JCN;
Third cmb:
SELECT ATU.ID, ATU.ID FROM ATU WHERE (((ATU.JCN)=[Forms]![Single]![cmbJCN])) GROUP BY ATU.ID; (this is different because I've been playing around with it non-stop trying to find something that would work).
I'd greatly appreciate any help with this or any other ways of doing it.
Thanks!
Edit: I don't even need it to be a combo box, I just need to know the ID and this seemed like it'd be simple...
I need the 3rd combo box to be cascaded off the 2nd. The 3rd is to display the ID based off what the 2nd combo box is. For some reason when I copy the steps I took to cascade the 2nd and try to apply them to the 3rd, it just doesn't work.
First cmb:
SELECT ATU.[Serial #], ATU.[Serial #] FROM ATU GROUP BY ATU.[Serial #], ATU.[Serial #] ORDER BY ATU.[Serial #];
Second cmb:
SELECT ATU.JCN, ATU.JCN FROM ATU WHERE (((ATU.[Serial #])=[Forms]![Single]![Serial])) GROUP BY ATU.JCN, ATU.JCN ORDER BY ATU.JCN;
Third cmb:
SELECT ATU.ID, ATU.ID FROM ATU WHERE (((ATU.JCN)=[Forms]![Single]![cmbJCN])) GROUP BY ATU.ID; (this is different because I've been playing around with it non-stop trying to find something that would work).
I'd greatly appreciate any help with this or any other ways of doing it.
Thanks!
Edit: I don't even need it to be a combo box, I just need to know the ID and this seemed like it'd be simple...