when we apply multi-select dropdown .. comma separated value is getting store in table in single row ..but i how to put in different rows.
Output i am getting
Field
Field Value
Dropdown
1,2,3,4
Expected
1
2
3
4
Discussion posts and replies are publicly visible
Check out Appian's text function "fn!split" - it takes a text string and turn it into an array based on a given delimiter.
I've found that a better option would be to assemble a text array and then create a JSON string -- the split() method will work, but there's a lot of overhead involved in creating the array string then re-parsing it back to the plain array when needed, and a!toJson() / a!fromJson() take care of all of that implicitly.