I have two drop downs that are in SharePoint as Lookup fields. Using the following formula returns all values in duplicate.
Choices('DataSource1'.Column)
This one is the second dropdown that is connected to the first dropdown.
Filter(Choices('DataSource1'.'Column1'), Value in (Filter('DataSource2',DataCardValue.Selected.Value='Column2').'Column1'))
How do I remove the duplicate items from both of these?