Hi,
I have a couple of combo boxes on an unbound form.
One of the combo boxes just displays a list of everything in one field in a table.
I then want the rows available to select in the second box to be filtered by what was selected in the first box.
This is the row source I have for the second box at the minute:
I dont seem to be able to reference back to the contents of the first combo box.
Any ideas?
I have a couple of combo boxes on an unbound form.
One of the combo boxes just displays a list of everything in one field in a table.
I then want the rows available to select in the second box to be filtered by what was selected in the first box.
This is the row source I have for the second box at the minute:
Code:
SELECT tblSource_Group.SG_name
FROM tblRAO INNER JOIN tblSource_Group ON tblRAO.RAO_ID = tblSource_Group.RAO_ID
WHERE tblSource_Group.RAO_ID = (select tblRAO.RAO_ID
from tblRAO
where tblRAO.RAO_name = txtRAO);
I dont seem to be able to reference back to the contents of the first combo box.
Any ideas?