How to remove comma "," from the value of books

Hi there,

I hope you guys are doing well, i am working on multi search tag using multidropdown and it works fine, i need help on how to remove comma from the repeating group, the data i am getting is “Database, English” in one label, and i need it to look like single word as label i.e: “Database” “English”

Use :splitby and then set the delimiter as a comma ,
Next, use “:trimmed” to remove the spaces

You should now get a list such as

  • Database
  • English
1 Like

Thanks for your reply @hi.luisacosta here is my code, please feel free to check

Oh I see, the issue is your formatting not the data. You only have 1 text element for the tags, so all the words are showing up with the same background, and there is visually no whitespace between the words.

If you want it to seem like multiple tags then you would need to use a repeating group to hold that tag text element. Try that.

1 Like

it works, i use repeating group of “books” table and use data source of “tasks” table, which is working fine. @hi.luisacosta thanks once again for your prompt reply.

1 Like

This topic was automatically closed after 70 days. New replies are no longer allowed.