Sep 8, 2006 #1 ipcm Programmer Aug 10, 2006 19 US I need help with a Formula I have A "physician" field with Lastname, firstname I need to convert this to Lastname, Initial.
I need help with a Formula I have A "physician" field with Lastname, firstname I need to convert this to Lastname, Initial.
Sep 8, 2006 1 #2 synapsevampire Programmer Mar 23, 2002 20,180 US Try: trim(split({table.field},",")[1]) + ", " + left(trim(split({table.field},",")[2]),1) -k Upvote 0 Downvote
Sep 8, 2006 Thread starter #3 ipcm Programmer Aug 10, 2006 19 US Thank you very much..It worked..God Bless Upvote 0 Downvote