PDF report problem with enumlist separate by comas

Hi everyone, Im having a problem with the PDF report. The enumlist values are not correctly separate by commas. The screen below shows the issue.

3X_b_a_ba9d4c3687f5d28e7c8d4450b47ce188b112975d.png

Any idea of what may be the problem?
Thanks in advance

Solved Solved
0 1 121
1 ACCEPTED SOLUTION

Aurelien
Google Developer Expert
Google Developer Expert

Hi @muketaz

If you are expecting something with no blank space before commas, you may want to do as below:

Instead of:

<<[yourEnumList]>>

please try:

<<SUBSTITUTE([yourEnumList], " , ",  ", ")>>

Edit:
" , " is the standard item separator for enumList, and List too if my knowledge is correct.

View solution in original post

1 REPLY 1

Aurelien
Google Developer Expert
Google Developer Expert

Hi @muketaz

If you are expecting something with no blank space before commas, you may want to do as below:

Instead of:

<<[yourEnumList]>>

please try:

<<SUBSTITUTE([yourEnumList], " , ",  ", ")>>

Edit:
" , " is the standard item separator for enumList, and List too if my knowledge is correct.

Top Labels in this Space