Solved

List concatenator


Badge +1

I am supplying a list of 113 list attributes from a ListBuilder to a ListConcatenator How do I get this to concatenate into one long string with comma separator characters.

My Results output is just

 

 

 

icon

Best answer by ebygomm 9 May 2019, 15:16

View original

2 replies

Userlevel 1
Badge +21

There's no need for a list builder here, you can send your inputs to an aggregator and choose to your list attribute under attributes to concatenate.

 

If you wanted to use the listbuilder followed by a listconcatenator, you don't want the group by on your list builder. At the moment you're not actually creating a list to concatenate

Badge +1

There's no need for a list builder here, you can send your inputs to an aggregator and choose to your list attribute under attributes to concatenate.

 

If you wanted to use the listbuilder followed by a listconcatenator, you don't want the group by on your list builder. At the moment you're not actually creating a list to concatenate

Ahhh thanks the Aggregator was what was needed . I have my concatenated string with comma separators.

Reply