Results 1 to 6 of 6

Thread: Reversing a "First Middle Last" Name to "Last, First Middle" Name Format

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #5
    Senior Member
    Join Date
    Jun 2012
    Posts
    337
    Rep Power
    14
    I'd prefer:

    =MID(TEXT(A2,"@ @"),SEARCH(" ",A2)+1,LEN(A2))

    In VBA

    Code:
    function F_snb(c00)
      F_snb=split(c00)(1) & " " & split(c00)(0)
    end function
    in Cell B2

    =F_snb(A2)
    Last edited by snb; 01-06-2014 at 10:02 PM.

Similar Threads

  1. VBA Versions of my "Get Field" and "Get Reverse Field" formulas
    By Rick Rothstein in forum Rick Rothstein's Corner
    Replies: 4
    Last Post: 06-02-2017, 06:15 PM
  2. Replies: 5
    Last Post: 04-18-2013, 02:30 AM
  3. Click On link entitled "Web Timeclock"
    By mrmmickle1 in forum Excel Help
    Replies: 0
    Last Post: 01-24-2013, 04:23 AM
  4. Follow-up to "Excel Number Format: Indian Style Comma Separation"
    By Rick Rothstein in forum Rick Rothstein's Corner
    Replies: 2
    Last Post: 04-14-2012, 10:46 PM
  5. Ordinal Suffix (i.e., "st", "nd", "rd" and "th")
    By Rick Rothstein in forum Rick Rothstein's Corner
    Replies: 0
    Last Post: 03-20-2012, 03:46 AM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •