Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Syntax

GROUPCONCATDISTINCT(<any>[; <number>])

Description

Concatenates all Creates a list of all unique non-null values seen in a group (currently, max. 1000 values are collected). The first argument is the column containing values that should be concatenated. The second value is an optional constant used to set a maximum number of values to avoid overflow problems with very large groups. The maximum number of values defaults to 1000. If more than the configured maximum number n of values are seen, the top n values in ascending order are kept.
The concatenated values are returned as a list

...

GroupsItems
group12
group15
group1<null>
group117
group18
group2<null>
group26
group26
group25
group212
group3<null>
group3<null>
group322
group325
group312

First, create a group using GROUPBY(#RawData!Groups)

...


Then use the GROUPCONCATDISTINCT(#RawData!Items;2), and the result is the non-null values concatenated in the number of groups you specified by the constant. 

...