concatenating cells
I am trying to convert rows grouped by a composite variable into a concatenated cell sepearated by a space based on the grouping variable. Example:
into:
\
The code below creates a grouping column and a "N rows" column but i cant get the contents of the cells concatenated.
dt = Current Data Table();
dt_summary = dt << Summary(
Group( :Column B ),
Statistics(
Concatenate( :Column...