Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hello all, How can i break a string "Name Surname" that is in one cell to two diffrent cells "Name" "Surname" ? Is there a function i can use? Thank you in advance! -- dealwi8me ------------------------------------------------------------------------ dealwi8me's Profile: http://www.excelforum.com/member.php...o&userid=18854 View this thread: http://www.excelforum.com/showthread...hreadid=552563 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
"dealwi8me" wrote:
How can i break a string "Name Surname" that is in one cell to two diffrent cells "Name" "Surname" ? Is there a function i can use? This might suffice .. Assume data in A1 down In B1: =LEFT(TRIM(A1),SEARCH(" ",TRIM(A1))-1) In C1: =RIGHT(TRIM(A1),LEN(TRIM(A1))-SEARCH(" ",TRIM(A1))) Select B1:C1, fill down -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() these functions will do! thank you so much for your help :) -- dealwi8me ------------------------------------------------------------------------ dealwi8me's Profile: http://www.excelforum.com/member.php...o&userid=18854 View this thread: http://www.excelforum.com/showthread...hreadid=552563 |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
"dealwi8me" wrote:
these functions will do! thank you so much for your help :) You are welcome ! -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Split text string using mid-search? | Excel Discussion (Misc queries) | |||
split string based on a SET of words | Excel Discussion (Misc queries) | |||
Using Split Function on String with no spaces | Excel Programming | |||
how to split a string and return array | Excel Programming | |||
Solve operators within a string...split? | Excel Programming |