Jul 30, 2004 #1 dmaier MIS Apr 13, 2002 38 US Is there a way to reverse or juxtapose(I guess that is the word) a column of names.... Example: Bob Miller Change to Miller, Bob Do this for a whole column of names. Can this be done?
Is there a way to reverse or juxtapose(I guess that is the word) a column of names.... Example: Bob Miller Change to Miller, Bob Do this for a whole column of names. Can this be done?
Jul 30, 2004 #2 S SkipVought Programmer Dec 4, 2001 47,492 US Hi, You can create a formula to do that... [tt] =RIGHT(A1,LEN(A1)-FIND(" ",A1))&", "&LEFT(A1, FIND(" ",A1)-1) [/tt] Skip, Want to get great answers to your Tek-Tips questions? Have a look at faq222-2244 Upvote 0 Downvote
Hi, You can create a formula to do that... [tt] =RIGHT(A1,LEN(A1)-FIND(" ",A1))&", "&LEFT(A1, FIND(" ",A1)-1) [/tt] Skip, Want to get great answers to your Tek-Tips questions? Have a look at faq222-2244
Jul 30, 2004 #3 byundt Technical User Jun 26, 2004 602 US See the second example in Dave Brett's file at http://www.vbaexpress.com/kb/getarticle.php?kb_id=68He uses RegExp in a VBA macro to do the name reversal. Upvote 0 Downvote
See the second example in Dave Brett's file at http://www.vbaexpress.com/kb/getarticle.php?kb_id=68He uses RegExp in a VBA macro to do the name reversal.