Comment on page
List.Distinct
Returns a list of values with duplicates removed.
function (list
as list, optionalequationCriteria
as nullable any) as list
Returns a list that contains all the values in list
list
with duplicates removed. If the list is empty, the result is an empty list.List.Selection
Remove the duplicates from the list {1, 1, 2, 3, 3, 3}.
List.Distinct({1, 1, 2, 3, 3, 3})
{1, 2, 3}
Last modified 5yr ago