I have a field in which I would like to provide a combo box which lists all of the values (choices) that have been previously entered for that field (i.e. the user can enter anything they want but I would like to provide them with an easy combo box that lists the other values already stored in that particular field and table). If I just use a simple SELECT statement in the RowSource property such as…
SELECT cboFieldInQuestion FROM tblTableInQuestion;
then the combo box lists all the values already in that table field but it also lists all the duplicates as well.
Is there a way to do this but without showing the duplicates?
SELECT cboFieldInQuestion FROM tblTableInQuestion;
then the combo box lists all the values already in that table field but it also lists all the duplicates as well.
Is there a way to do this but without showing the duplicates?