List.Intersect
入力内に見つかったリスト値の積集合を返します。
Syntax
List.Intersect(
lists as list,
optional equationCriteria as any
) as list
Remarks
入力リスト lists
内に見つかったリスト値の積集合を返します。省略可能なパラメーター equationCriteria
を指定できます。
Examples
Example #1
{1..5}、{2..6}、{3..7} の各リストの積集合を求めます。
List.Intersect({{1..5}, {2..6}, {3..7}})
Result:
{3, 4, 5}
Category
List.Set operations