How do I turn the following into a distinct filter of the Gallery.
Goal: If the ComboBox is blank filter the list for all, but only one item of each, not all items of each.
A person may be on the list several times, but I only want to see each of their names once in the Gallery if the ComboBox is blank; Preferably the first record associated with their name.
The following returns all instances of all names in descending order if the ComboBox is blank, and all instances of ONLY the name chosen in the ComboBox if a name is selected. The second part of the formula is working; The first part should only return one instance of each person in descending order.
If(IsBlank(ComboBox1.Selected.Value),Filter(Collection,Title,SortOrder,Descending),
Filter(Collection,Title=ComboBox1.Selected.Value))