May 14, 2004 #1 jamming1 Vendor Nov 23, 2003 82 US I need to take two columns, first name and last name. I need to take the first letter of the first name and take the last name, up to 8 characters.
I need to take two columns, first name and last name. I need to take the first letter of the first name and take the last name, up to 8 characters.
May 14, 2004 1 #2 AnotherHiggins Technical User Nov 25, 2003 6,259 US If first name is in column A and last name is in column B, and assuming you want a grand total of 8 characters or less, just use this in C1: [COLOR=blue white]=LEFT(A1,1)&LEFT(B1,7)[/color blue white] John Upvote 0 Downvote
If first name is in column A and last name is in column B, and assuming you want a grand total of 8 characters or less, just use this in C1: [COLOR=blue white]=LEFT(A1,1)&LEFT(B1,7)[/color blue white] John
May 14, 2004 Thread starter #3 jamming1 Vendor Nov 23, 2003 82 US Thank you very much! Upvote 0 Downvote