Create comma seperated field from repeat (for entity list)

Hi all,

I have a repeat question with names of persons. I want to use these repeats in my entity list. As entity lists cannot handle repeats, is there a way to create a comma separated field from the repeat inputs (e.g. by using a calculate) so that I can use this field in my entity list?

I want to have this for my entity list: text >> name_person1, name_person2
Potential solution with calculate: ${name_person} + ${name_person}

Many thanks for your thoughts/ideas.

Hi @Edmonds,

the join() function will do the job :wink:

Your calculation will be something like :

join(',',${repeat_name})

Thanks @MinimalPotato for the correct parameters order :wink:

1 Like

Ah, easy! Did not think of that at all. Thanks for the help!

1 Like