Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi all,
Is there an easy way to convert the following cell (lastname, firstname) to (lastinitial, firstinitial) e.g. Smith, John to S, J Thanks Brian |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Are lastname, firstname in separate cells. If yes use LEFT formula
"Brian" wrote: Hi all, Is there an easy way to convert the following cell (lastname, firstname) to (lastinitial, firstinitial) e.g. Smith, John to S, J Thanks Brian |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
No, lastname and firstname are in the same cell seperated by a comma
"cha" wrote: Are lastname, firstname in separate cells. If yes use LEFT formula "Brian" wrote: Hi all, Is there an easy way to convert the following cell (lastname, firstname) to (lastinitial, firstinitial) e.g. Smith, John to S, J Thanks Brian |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=LEFT(A2)&MID(A2,FIND(", ",A2),3)
-- HTH Bob Phillips (remove xxx from email address if mailing direct) "Brian" wrote in message ... Hi all, Is there an easy way to convert the following cell (lastname, firstname) to (lastinitial, firstinitial) e.g. Smith, John to S, J Thanks Brian |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If Smith, John is in B3 then:
=LEFT(B3,1) & MID(B3,FIND(",",B3,1),3) will display: S, J -- Gary's Student "Brian" wrote: Hi all, Is there an easy way to convert the following cell (lastname, firstname) to (lastinitial, firstinitial) e.g. Smith, John to S, J Thanks Brian |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks Gary"s Student - looks like that is what I need.
"Gary''s Student" wrote: If Smith, John is in B3 then: =LEFT(B3,1) & MID(B3,FIND(",",B3,1),3) will display: S, J -- Gary's Student "Brian" wrote: Hi all, Is there an easy way to convert the following cell (lastname, firstname) to (lastinitial, firstinitial) e.g. Smith, John to S, J Thanks Brian |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
look up names in one excel tab to find a match in another tab | Excel Discussion (Misc queries) | |||
copying cell names | Excel Discussion (Misc queries) | |||
Replace range names with cell references? | Excel Worksheet Functions | |||
Finding Duplicate Names from Different Lists... | Excel Discussion (Misc queries) | |||
Convert Numeric into Text | Excel Worksheet Functions |