Hi everyone
I’ve got a selection box on one of my columns to choose a certain option which works fine but I now want to to make it easier to read and have the selections as bullet points.
List(“John”, “Paul”, “Ringo”, “George”)
The above works how it should but not that easy to read when your options have been selected. However the following creates one big selection rather than allowing me to choose Paul, John, George or ring
BulletedList(“John”, “Paul”, “Ringo”, “George”)
I’ve tried using split, I’ve tried using unique but I cannot seem to separate the choices if its a BulletedList.
Can this be done?