B
Brad
Thanks for taking the time to read my question.
I have a continuous form that has a combo box on it. As the user selects
items from the combo box for each record, I'd like the list to shorten and
not include previously selected items.
can I do this?
I tried making the RowSource a query where the Criteria was not equal to the
values in the combo box, but then I get nothing.
SQL:
SELECT [tblChangeDefaults].[ItemsToChange] FROM tblChangeDefaults GROUP BY
[tblChangeDefaults].[ItemsToChange] HAVING
(((tblChangeDefaults.ItemsToChange)<>[Forms]![frmtblDataChange]![ValueToChange])) ORDER BY [tblChangeDefaults].[ItemsToChange];
Thanks,
Brad
I have a continuous form that has a combo box on it. As the user selects
items from the combo box for each record, I'd like the list to shorten and
not include previously selected items.
can I do this?
I tried making the RowSource a query where the Criteria was not equal to the
values in the combo box, but then I get nothing.
SQL:
SELECT [tblChangeDefaults].[ItemsToChange] FROM tblChangeDefaults GROUP BY
[tblChangeDefaults].[ItemsToChange] HAVING
(((tblChangeDefaults.ItemsToChange)<>[Forms]![frmtblDataChange]![ValueToChange])) ORDER BY [tblChangeDefaults].[ItemsToChange];
Thanks,
Brad