TheLazyPig
Programmer
Hi!
How can I change Lastname;Firstname;mi to Lastname, Firstname mi?
Thanks in advance.
How can I change Lastname;Firstname;mi to Lastname, Firstname mi?
Thanks in advance.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
... substr(Person, 1, instr(person,';')- 1 )||', '||REPLACE(substr(person,instr(person,';')+1),';',' ') ...