閱讀英文

共用方式為


List.Distinct

語法

List.Distinct(list as list, optional equationCriteria as any) as list

關於

傳回清單,內含清單 list 中移除重複項後的所有值。 如果清單為空白,則結果為空白清單。

範例 1

移除清單 {1, 1, 2, 3, 3, 3} 中的重複項。

使用方式

List.Distinct({1, 1, 2, 3, 3, 3})

輸出

{1, 2, 3}

方程式準則