Hi, I have a dropdown that will display values from User List where the column name is Titles.
User can add new Titles or select existing Titles.
How can i remove the duplicate values as example below and display only one if the name is the same?

Data card Update Property:
If(
!IsBlank(ComboBox6.SelectedItems),
ComboBox6.Selected.Titles,
ComboBox6.SearchText
)
Combo box Items Property:
User
Thank you in advance!