Link to home
Start Free TrialLog in
Avatar of CFT-TN
CFT-TN

asked on

Format first name and last name into userid in excel

Hello everyone

I need help with an excel spreedsheet.  lets say I have 3 columns A=First Name, B=Last Name, and C=UserID.  I need to take first initail in column A and the first 7 characters in column B and combine them in C.  So if I have a Terry Massengill the UserID would be massengt.  The UserID would be formated lastname first initial.  But only a total of 8 characters.  Any help would be appreciated.  
Avatar of yobri
yobri
Flag of United States of America image

Put this in cell C1 and then copy down.

=LEFT(A1,1) & LEFT(B1,7)
Sorry, this way instead for last then first.

=LEFT(B1,7) & LEFT(A1,1)
ASKER CERTIFIED SOLUTION
Avatar of yobri
yobri
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
=lower(LEFT(B1,7) & LEFT(A1,1) )