Display Comma Delimited Custom String List to Line Separated
I have a custom field list called "Managers" that lists calculated data as:
Bob, Mary, Sue
I want to display this data as:
Bob
Mary
Sue
I tried this via a simple HTML substitution, but that doesn't work:
displayname=Managers
textmode=true
valueexpression=REPLACE({DE:Managers},", ","<br>")
valueformat=HTML
The "<br>" displays as text instead of being seen as code:
Bob<br>Mary<br>Sue
Any ideas/tips?