Forum Discussion
ForrestParker2
5 years agoQrew Trainee
One think you might do is just anticipate that they will use characters other than a semi-colon and replace them with the semi-colon.
The formula for the "Aliases (formula)" field walks through each anticipated incorrect separator and replaces it with what we want.
------------------------------
Forrest Parker
------------------------------
The formula for the "Aliases (formula)" field walks through each anticipated incorrect separator and replaces it with what we want.
var text replaceCommasAndSpaces = SearchAndReplace([Aliases (separate with ";")],", ",";");
var text replaceSpacesAndCommas = SearchAndReplace($replaceCommasAndSpaces," ,",";");
var text replaceCommas = SearchAndReplace($replaceSpacesAndCommas,",",";");
var text replaceSemiColonsAndSpaces = SearchAndReplace($replaceCommas,"; ",";");
var text replaceSpaces = SearchAndReplace($replaceSemiColonsAndSpaces," ",";");
var text addBackSpacesAfterSemiColon = SearchAndReplace($replaceSpaces,";","; ");
$addBackSpacesAfterSemiColon​
------------------------------
Forrest Parker
------------------------------