Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
SJS SJS is offline
external usenet poster
 
Posts: 20
Default Create user id fm LName, FName

I have a single column for people's full name (Last Name, First Name ex
Samson, Steve). I'd like to extract the person's first initial and last name
to create a user id (ssamson).

Any help for the function would be appreciated!

tks,
steve
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 14
Default Create user id fm LName, FName

=LOWER(MID(A1,FIND(",",A1,1)+2,1)&LEFT(A1,FIND("," ,A1,1)-1))



On Jul 1, 1:34*pm, sjs wrote:
I have a single column for people's full name (Last Name, First Name ex
Samson, Steve). *I'd like to extract the person's first initial and last name
to create a user id (ssamson).

Any help for the function would be appreciated!

tks,
steve


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default Create user id fm LName, FName

=LOWER(MID(A1,FIND(" ",A1)+1,1)&LEFT(A1,FIND(",",A1)-1))


"sjs" wrote:

I have a single column for people's full name (Last Name, First Name ex
Samson, Steve). I'd like to extract the person's first initial and last name
to create a user id (ssamson).

Any help for the function would be appreciated!

tks,
steve

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Create user id fm LName, FName

This will do what you asked...

=LOWER(LEFT(MID(A1,FIND(",",A1)+2,1)&A1,FIND(",",A 1)))

But, I have a friend whose last name contains a space (Della Rossa)... if he
was in your list, I'm guessing you would not want the space to appear in
your user ID, so consider using this more universal modification to the
above formula...

=SUBSTITUTE(LOWER(LEFT(MID(A1,FIND(",",A1)+2,1)&
A1,FIND(",",A1)))," ","")

Rick


"sjs" wrote in message
...
I have a single column for people's full name (Last Name, First Name ex
Samson, Steve). I'd like to extract the person's first initial and last
name
to create a user id (ssamson).

Any help for the function would be appreciated!

tks,
steve


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Create dictionary of terms, create first time user site Solitaire Jane Austin New Users to Excel 1 January 19th 06 09:47 PM
How to create & use User Forms DCSwearingen Excel Discussion (Misc queries) 2 December 27th 05 05:09 PM
How do I copy information to the ascending by LName worksheet? Excel project Excel Worksheet Functions 2 November 12th 05 01:50 AM
change lname, fname to fname last name Al Wills Excel Discussion (Misc queries) 4 June 6th 05 06:18 AM
how do i reference data in a file with the fname in another cell? jhlrtn Excel Worksheet Functions 1 May 23rd 05 11:11 PM


All times are GMT +1. The time now is 01:18 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"