S
Silvio
I have a combo box with the following Row Source in oder to enter new records:
SELECT tblSubTrades.SubTradeID, tblSubTrades.SubTradeDesc
FROM tblSubTrades
ORDER BY tblSubTrades.SubTradeDesc;
How can eliminate from the combo box items that have been used already in
order to populate the table? In few words, if combo box has Red, Orange,
White, and Black in the list, once I select for example Orange from the list
to create a new record then my option should be only Red, White, and Black
when I try to crate the next record.
SELECT tblSubTrades.SubTradeID, tblSubTrades.SubTradeDesc
FROM tblSubTrades
ORDER BY tblSubTrades.SubTradeDesc;
How can eliminate from the combo box items that have been used already in
order to populate the table? In few words, if combo box has Red, Orange,
White, and Black in the list, once I select for example Orange from the list
to create a new record then my option should be only Red, White, and Black
when I try to crate the next record.