https://docs.espocrm.com/user-guide/...sions/#replace
(Please note, I mistakenly used Complex Expression instead of Formula, however there is a solution for both method thanks to item and Maximus)
I'm trying to use the replace formula and having difficult with it, anyone know how to use it?
Here is my formula but not getting it to work.
Seeing that it didn't work, I decide to just comment out the first line to see if my Replace formula work at all. Still no luck so I also tried to just have 2 string. But still nothing, anyone know how to use this formula? It a new feature from v6.
I'm planning to replace all non-compatible character filename, for example these type of characters \ / : ; ? change to _
(Please note, I mistakenly used Complex Expression instead of Formula, however there is a solution for both method thanks to item and Maximus)
I'm trying to use the replace formula and having difficult with it, anyone know how to use it?
Here is my formula but not getting it to work.
Code:
filename = string\concatenate(iD, ' - ', name); filename = replace('test0', 'test1', 'test2');
Code:
/* filename = string\concatenate(iD, ' - ', name); */ filename = replace('test0', 'test1');
Comment