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.
![]()
Any idea of what may be the problem?
Thanks in advance
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.
![]()
Any idea of what may be the problem?
Thanks in advance
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.