Forum Discussion
ElandirayanJana
Qrew Trainee
HI Michael,
Thanks for your response. you are telling search and replace. we are planning to display related attributes based on the user selection. If it is single field we can pull form table and show the associated lookup. It is multiselect text, hence doing research to display the attributes.
For Example
1|apple
2|orange
3|grapes
4|plum
If user select above 4 fields we need to display number 1,2,3,4 using formula as an alternate.
Thanks
Elan
------------------------------
Elandirayan Janarthanan
------------------------------
Thanks for your response. you are telling search and replace. we are planning to display related attributes based on the user selection. If it is single field we can pull form table and show the associated lookup. It is multiselect text, hence doing research to display the attributes.
For Example
1|apple
2|orange
3|grapes
4|plum
If user select above 4 fields we need to display number 1,2,3,4 using formula as an alternate.
Thanks
Elan
------------------------------
Elandirayan Janarthanan
------------------------------
MichaelTamoush
4 years agoQrew Captain
I'm not sure if I understand correctly, but if you are looking for people to select from a multi select field but display as comma form then you would set your Multiselect Field Form Properties to 'Add or Edit' (so it is only visible in edit mode) and then make a formula field and set it to 'View Only'. The formula field would be formula text:
var text value = ToText([Your Multiselect Field]);
SearchandReplace($value, " ; ", ",")
All the search and replace does is switch the semi-colons to commas.
------------------------------
Michael Tamoush
------------------------------
var text value = ToText([Your Multiselect Field]);
SearchandReplace($value, " ; ", ",")
All the search and replace does is switch the semi-colons to commas.
------------------------------
Michael Tamoush
------------------------------