The following formula works fine:
It returns "John Doe". The following does not:
It returns "DoeJohn" instead of "Doe, John". Seems like commas in strings aren't working, a colon works. So do commas need extra escaping? If so, how?
Code:
name = string\concatenate(firstName,' ',lastName);
Code:
name = string\concatenate(lastName,', ',firstName);
Comment