Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Syntax

INTERSECTION(<list>;<list>;...)

Description

Returns the intersection of all list arguments. The resulting list contains only the elements found in all the list arguments and doesn't contain any duplicate elements.

Example

INTERSECTION(Column1;Column2;Column3;Column4)

Column1Column2Column3Column4INTERSECTION returns
[1, 2, 3, 4][3, 4, 5][1, 2, 3, 4, 5][3, 3, 4, 4][3, 4]


  • No labels