Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In one cell I have a name laid out simply as
Lastname Firstname (1 space between) what I require in another cell is a combination of lastname and first letter of firstname. Thanks in advance Bart |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way with no error checking:
=LEFT(A1,SEARCH(" ",A1)+1) Hope this helps Rowan Ian Bartlett wrote: In one cell I have a name laid out simply as Lastname Firstname (1 space between) what I require in another cell is a combination of lastname and first letter of firstname. Thanks in advance Bart |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
For A1: Last First
Options: B1: =LEFT(A1,FIND(" ",A1)-1)&MID(A1,FIND(" ",A1)+1,1) Returns LastF B1: =LEFT(A1,FIND(" ",A1))&MID(A1,FIND(" ",A1)+1,1) Returns Last F B1: =LOWER(LEFT(A1,FIND(" ",A1))&MID(A1,FIND(" ",A1)+1,1)) Returns lastf Does any of that help? *********** Regards, Ron "Ian Bartlett" wrote: In one cell I have a name laid out simply as Lastname Firstname (1 space between) what I require in another cell is a combination of lastname and first letter of firstname. Thanks in advance Bart |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One mo
A1: Last First B1: =SUBSTITUTE(LEFT(A1,FIND(" ",A1)+1)," ","") also returns LastF *********** Regards, Ron "Ron Coderre" wrote: For A1: Last First Options: B1: =LEFT(A1,FIND(" ",A1)-1)&MID(A1,FIND(" ",A1)+1,1) Returns LastF B1: =LEFT(A1,FIND(" ",A1))&MID(A1,FIND(" ",A1)+1,1) Returns Last F B1: =LOWER(LEFT(A1,FIND(" ",A1))&MID(A1,FIND(" ",A1)+1,1)) Returns lastf Does any of that help? *********** Regards, Ron "Ian Bartlett" wrote: In one cell I have a name laid out simply as Lastname Firstname (1 space between) what I require in another cell is a combination of lastname and first letter of firstname. Thanks in advance Bart |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks very much Rowan and Ron
"Ian Bartlett" wrote in message news:QoJnf.107102$Gd6.11761@pd7tw3no... In one cell I have a name laid out simply as Lastname Firstname (1 space between) what I require in another cell is a combination of lastname and first letter of firstname. Thanks in advance Bart |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Count Intervals of Filtered TEXT values in Column and Return Count across a Row | Excel Worksheet Functions | |||
Combine date with text | Excel Worksheet Functions | |||
Autofitting a row | Excel Discussion (Misc queries) | |||
Read Text File into Excel Using VBA | Excel Discussion (Misc queries) | |||
combine the text or digit in different cells | Excel Discussion (Misc queries) |