Forum Discussion

Re: Convert a TextList field into richtext bulleted list

Just replying back to close the loop, to confirm that this solution works like a charm. A bit clunky, but it does the trick!

Thanks again Michael!

------------------------------
George Khairallah
CTO
gotomyerp, LLC
------------------------------

3 Replies

  • MarkShnier__You's avatar
    MarkShnier__You
    Icon for Qrew Legend rankQrew Legend

    Try this as a more simple solution. Just insert your multi select field into the first line  


    var text CombinedText = ToText([My Text Concatenation Field for Child names]);

    var text ConvertToVerticalListWithBullets=
    Trim(SearchAndReplace($CombinedText, " ; ","<br>&#8226"));  // separate entries with a new line and a bullet

    If($ConvertToVerticalListWithBullets<>"", "&#8226") // this is a bullet for the first entry
    &
    $ConvertToVerticalListWithBullets



    ------------------------------
    Mark Shnier (YQC)
    mark.shnier@gmail.com
    ------------------------------
      • MichaelTamoush's avatar
        MichaelTamoush
        Qrew Captain
        Awesome Mark!

        I'm adding this simpler solution to my notes.

        Thanks!

        ------------------------------
        Michael Tamoush
        ------------------------------