Domino Code Fragment

Code Name*
This formula reformats the contents of Person_Name to put the last name first followed by a comma, a space, and the first name.
Date*
04/29/2024
Source (or email address if you prefer)*
Rlatulippe@romac.com
IP address:.3.17.68.14
Description*
This formula reformats the contents of Person_Name to put the last name first followed by a comma, a space, and the first name.
Type*
Formula
Categories*
(Misc)
Implementation:
Required Client:
Server:
Limitations:
Comments:
Files/Graphics attachments (if applicable): Code:
@If(@Contains(Person_Name;" "); @Right(Person_Name;" ") + ", " + @Left(Person_Name;" "); Person_Name)