Skip to main content
Solved

List concatenator

  • May 9, 2019
  • 2 replies
  • 151 views

Forum|alt.badge.img+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

 

 

 

Best answer by ebygomm

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

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

2 replies

ebygomm
Influencer
Forum|alt.badge.img+44
  • Influencer
  • 3427 replies
  • Best Answer
  • May 9, 2019

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


Forum|alt.badge.img+1
  • Author
  • 31 replies
  • May 9, 2019

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.