I have a dropdown list (allows multiple values) and I want to pull the values and present them in a text field separated by a comma. For example:
My list is
Item 1
Item 2
Item 3
and I want to pull them in display them as "Item 1, Item 2, Item 3"
Using this formula: =JOIN(COLLECT(Category@row,Category@row, <>""), ", ")
which pulls the values and joins them but does not separate them by a comma but a line feed instead
Any suggestions?