anyone spot what I'm missing with this function?...
This works:
But this doesn't:
Guessing you can see what's it's intended to do.
Following the docs: https://docs.espocrm.com/administration/formula/
This works:
Code:
jitsiMeeting = string\replace(string\concatenate('meet.jit.si/', assignedUserName, '-', contactsNames, '-', leadsNames, '-', parentType, '-', parentName ), ' ', '-');
Code:
jitsiMeeting = string\replace(string\concatenate('meet.jit.si/', assignedUserName, '-', contactsNames, '-', leadsNames, '-', parentType, '-', parentName ), ' '||'&'||':'||'/'||'--'||'---'||'----'||'-----'||'------', '-');
Following the docs: https://docs.espocrm.com/administration/formula/
Comment