LISTELEMENT

Syntax

LISTELEMENT(<list>;<integer>)

Description

Returns the given element of a list.

  • LISTELEMENT automatically lists all elements of the list
  • LISTELEMENT allows to choose blocks of elements to list


Examples

In this example the function is looking for the third element in the referenced list. Elements are stored following order: [0, 1, 2, 3, ...]

LISTELEMENT(#RawData!Column1;3)

Column1

LISTELEMENT returns

[2, 2, 2, 2]

2

[3, 5, 7, 9]9
[24, 56, 87, 3]3
[243, 43, 993, 12]12
[10, 5, 178, 23, 58]23