If the Row Source of the combo box is a table that contains already contains
duplicates of your combo box items, you could make the Row Source a query of
that table using:
Select Distinct Field1, Field2 ...
Or, if your users are inadvertently entering duplicate values rather than
selecting them, set the Limit to List Property of the combo box to 'Yes'.
hth,