Dec 6, 2002 #1 thebobman Programmer Sep 25, 2000 12 US I am working with a data field of people names that are stored last name first ie Public John Q I need to convert it John Q Public Any suggestions Thanks
I am working with a data field of people names that are stored last name first ie Public John Q I need to convert it John Q Public Any suggestions Thanks
Dec 6, 2002 1 #2 goranm Programmer Dec 18, 2001 247 SE Hi ! Create a formula: StringVar NewString; NumberVar pos := Instr({YourName}, ' '); New_String := mid({YourName},pos +1) + ' ' + mid({YourName},1,pos -1) And there you will have what you want (I hope). /Goran Upvote 0 Downvote
Hi ! Create a formula: StringVar NewString; NumberVar pos := Instr({YourName}, ' '); New_String := mid({YourName},pos +1) + ' ' + mid({YourName},1,pos -1) And there you will have what you want (I hope). /Goran