Forum Discussion
MichaelTamoush
4 years agoQrew Captain
A formula field with: ToText([Your Multiselect Field]) will output:
Choice A; Choice B; Choice C
If you want a comma or something else:
var text value = ToText([Your Multiselect Field]);
SearchandReplace($value, " ; ", ",")
Whatever you put in the final quotes will replace all the semi-colons.
------------------------------
Michael Tamoush
------------------------------
Choice A; Choice B; Choice C
If you want a comma or something else:
var text value = ToText([Your Multiselect Field]);
SearchandReplace($value, " ; ", ",")
Whatever you put in the final quotes will replace all the semi-colons.
------------------------------
Michael Tamoush
------------------------------