Feb 23, 2005 #1 iansmithwolves Technical User Joined Jan 24, 2003 Messages 53 Location GB I have a field with user name in (surname,first name) format. Is there a formula which will change it to (firstname, surname) format Ian Smith Wolves England
I have a field with user name in (surname,first name) format. Is there a formula which will change it to (firstname, surname) format Ian Smith Wolves England
Feb 23, 2005 #2 synapsevampire Programmer Joined Mar 23, 2002 Messages 20,180 Location US Try: if ubound(split({table.field},",")) > 1 then trim(split({table.field},",")[2])&", "&trim(split({table.field}," ")[1]) else {table.field} -k Upvote 0 Downvote
Try: if ubound(split({table.field},",")) > 1 then trim(split({table.field},",")[2])&", "&trim(split({table.field}," ")[1]) else {table.field} -k