I also need to unconcatenate a name field, and last name per surfbum3000's example works great, but I can't get the first name to work.
The format of my name field is: Lastname,Firstname
no space after the comma. So, for last name, this string works:
LastName: Left([name],InStr([name],",")-1)...