I am brand new to tap forms and think it will work for what my needs are.
Is there a way to remove the comma from the text field when using a multiple choice pick list?
I am creating a field that stores hashtags and I don’t want the comma to separate what goes in the field. Just a space.
For example currently:
#hashtag1, #hashtag2, #hashtag3
What I want:
#hashtag1 #hashtag2 #hashtag3
Is this possible?
Thank you
The way Tap Forms separates values for a multi-select Pick List is to separate them by a comma and space character. There’s no function to change that, but what you could do is create a Script field which strips out the comma from the values you set.
The JavaScript function cleanedHashTags = hashTags.replace(",", "")
would do what you need.