Mar 26, 2004 #1 DMHCCI Vendor May 9, 2003 22 US Is there a built in function or can I use acombinations of commands or code to take a name formated LAST,FIRST and out put a string FIRST LAST.
Is there a built in function or can I use acombinations of commands or code to take a name formated LAST,FIRST and out put a string FIRST LAST.
Mar 26, 2004 1 #2 Golom Programmer Sep 1, 2003 5,595 CA Try [blue][tt] FirstLast = Mid ( LastFirst, Instr ( LastFirst, ",") + 1 ) & _ Left( LastFirst, Instr ( LastFirst, ",") - 1 [/tt][/blue] Upvote 0 Downvote
Try [blue][tt] FirstLast = Mid ( LastFirst, Instr ( LastFirst, ",") + 1 ) & _ Left( LastFirst, Instr ( LastFirst, ",") - 1 [/tt][/blue]