Enumlist base type Ref in body email

Helle everyone,

Iโ€™m using the action : " External: start an email"

In the body I would like to have a list of soccer players which are selected in a Enumlist typ ref.

If I use the column only the IDโ€™s show comma seperated.

Is it possible to show the name of the players?

using subsitute() or something like that?

For the email I donโ€™t want to use a workflow because some changes should be made in the email after itโ€™s generatedโ€ฆ

so itโ€™s just pre-fil functionalityโ€ฆ

Solved Solved
0 5 209
1 ACCEPTED SOLUTION

With Substitute() i was able to change the commaโ€™s to linebreaks. that worked!

thanks for your help Simon!!

View solution in original post

5 REPLIES 5

You need something like this in the email body:

<<Select(PlayersTable[PlayerName],IN([PlayerID],[_ThisRow].[ENUMRefColumn]))>>

Great! this works without the selectโ€ฆ

The names of the players are comma seperated but the names should in a listโ€ฆ

so now itโ€™s : playername1, playername2, playername3

but it should be like this:

playername1
playername2
playername 3

is this possible?

Hmm try this:

<< START: Select(PlayersTable[KeyColumn],IN([PlayerID],[_ThisRow].[ENUMRefColumn]))>>
<<[PlayerName]>>
<<END>>

that didnโ€™t work unfortunately

With Substitute() i was able to change the commaโ€™s to linebreaks. that worked!

thanks for your help Simon!!

Top Labels in this Space