Blog Post
Well there are a few solutions to this. But if you want all the control I would do a Manual Parse. You can add "IF" statements to control the colors or if you just want it to be in a pretty order then you can do that too.
Manual Parse (10 Item List)
var text Items = ToText([Workstream]);
List("</br>",
"<span style='color:red'>• </span>"&Part($Items,1,";"),
"<span style='color:orange'>• </span>"&Part($Items,2,";"),
"<span style='color:yellow'>• </span>"&Part($Items,3,";"),
"<span style='color:green'>• </span>"&Part($Items,4,";"),
"<span style='color:blue'>• </span>"&Part($Items,5,";"),
"<span style='color:purple'>• </span>"&Part($Items,6,";"),
"<span style='color:red'>• </span>"&Part($Items,7,";"),
"<span style='color:orange'>• </span>"&Part($Items,8,";"),
"<span style='color:yellow'>• </span>"&Part($Items,9,";"),
"<span style='color:green'>• </span>"&Part($Items,10,";"))
------------------------------
Meredith Moore
------------------------------