<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Separate Full Name into First &amp; Last Name</title>
	<atom:link href="http://excelhints.com/2009/01/24/separate-full-name-into-first-last-name/feed/" rel="self" type="application/rss+xml" />
	<link>http://excelhints.com/2009/01/24/separate-full-name-into-first-last-name/</link>
	<description>Excel Tips and Tricks for All Levels</description>
	<lastBuildDate>Thu, 29 Jul 2010 12:51:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: BrianK</title>
		<link>http://excelhints.com/2009/01/24/separate-full-name-into-first-last-name/comment-page-1/#comment-1168</link>
		<dc:creator>BrianK</dc:creator>
		<pubDate>Wed, 14 Jul 2010 00:20:20 +0000</pubDate>
		<guid isPermaLink="false">http://excelhints.com/?p=541#comment-1168</guid>
		<description>Ajay,
Here is what I tried, to seperate the name, assuming that is a middle name or whatever, use these formulas. We&#039;ll call the location of Ajay Kumar Yadav  the &quot;source&quot;
To seperate the parts I&#039;ll call them LeftPart, CenterPart, RightPart

for the LeftPart use:
=LEFT(source,FIND(&quot; &quot;,source)-1)

for the CenterPart use:
=IF(ISERR(FIND(&quot; &quot;,source,1+FIND(&quot; &quot;,source))),&quot;&quot;,MID(source,FIND(&quot; &quot;,source)+1,FIND(&quot; &quot;,source,1+FIND(&quot; &quot;,source))-FIND(&quot; &quot;,source)-1))

for the RightPart use:
=IF(ISERR(FIND(&quot; &quot;,source,1+FIND(&quot; &quot;,source))),MID(source,FIND(&quot; &quot;,source)+1,LEN(source)),MID(source,1+FIND(&quot; &quot;,source,1+FIND(&quot; &quot;,source)),LEN(source)))

phew... hope that helps.
Put the formulas in the column where you want to split the name up</description>
		<content:encoded><![CDATA[<p>Ajay,<br />
Here is what I tried, to seperate the name, assuming that is a middle name or whatever, use these formulas. We&#8217;ll call the location of Ajay Kumar Yadav  the &#8220;source&#8221;<br />
To seperate the parts I&#8217;ll call them LeftPart, CenterPart, RightPart</p>
<p>for the LeftPart use:<br />
=LEFT(source,FIND(&#8221; &#8220;,source)-1)</p>
<p>for the CenterPart use:<br />
=IF(ISERR(FIND(&#8221; &#8220;,source,1+FIND(&#8221; &#8220;,source))),&#8221;",MID(source,FIND(&#8221; &#8220;,source)+1,FIND(&#8221; &#8220;,source,1+FIND(&#8221; &#8220;,source))-FIND(&#8221; &#8220;,source)-1))</p>
<p>for the RightPart use:<br />
=IF(ISERR(FIND(&#8221; &#8220;,source,1+FIND(&#8221; &#8220;,source))),MID(source,FIND(&#8221; &#8220;,source)+1,LEN(source)),MID(source,1+FIND(&#8221; &#8220;,source,1+FIND(&#8221; &#8220;,source)),LEN(source)))</p>
<p>phew&#8230; hope that helps.<br />
Put the formulas in the column where you want to split the name up</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BrianK</title>
		<link>http://excelhints.com/2009/01/24/separate-full-name-into-first-last-name/comment-page-1/#comment-1167</link>
		<dc:creator>BrianK</dc:creator>
		<pubDate>Tue, 13 Jul 2010 23:57:42 +0000</pubDate>
		<guid isPermaLink="false">http://excelhints.com/?p=541#comment-1167</guid>
		<description>Deb,
for John A. Smith, MD 
in ecel 2007 you could use Convert text to table
select space as the delimeter
then you would have them in seperate columns, however it would look as you see it... John A. Smith, MD where each space = new column. Moving the Smith column could be done easily enough or did you need a formula  to simply do the whole thing?</description>
		<content:encoded><![CDATA[<p>Deb,<br />
for John A. Smith, MD<br />
in ecel 2007 you could use Convert text to table<br />
select space as the delimeter<br />
then you would have them in seperate columns, however it would look as you see it&#8230; John A. Smith, MD where each space = new column. Moving the Smith column could be done easily enough or did you need a formula  to simply do the whole thing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BrianK</title>
		<link>http://excelhints.com/2009/01/24/separate-full-name-into-first-last-name/comment-page-1/#comment-1166</link>
		<dc:creator>BrianK</dc:creator>
		<pubDate>Tue, 13 Jul 2010 23:47:53 +0000</pubDate>
		<guid isPermaLink="false">http://excelhints.com/?p=541#comment-1166</guid>
		<description>I use this for splitting things such as location/person where I have a timesheet of information and I need to just know the locations/names serperately.

if you have Plant32/Johnson in cell a1, we&#039;ll call a1 the source
....johnson is working in plant32...

for the location:
=left(source,find(&quot;/&quot;,source)-1)
 where source is the cell which contains the information you want to split

for the names:
=right(source,(len(source)-find(&quot;/&quot;,source)))
 where source is the cell which contains the information you want to split

perhaps there is a different way. i use this to track 15 or so substitute custodians in a school system for time sheet, etc. anyone interested I can e-mail the sheets.</description>
		<content:encoded><![CDATA[<p>I use this for splitting things such as location/person where I have a timesheet of information and I need to just know the locations/names serperately.</p>
<p>if you have Plant32/Johnson in cell a1, we&#8217;ll call a1 the source<br />
&#8230;.johnson is working in plant32&#8230;</p>
<p>for the location:<br />
=left(source,find(&#8220;/&#8221;,source)-1)<br />
 where source is the cell which contains the information you want to split</p>
<p>for the names:<br />
=right(source,(len(source)-find(&#8220;/&#8221;,source)))<br />
 where source is the cell which contains the information you want to split</p>
<p>perhaps there is a different way. i use this to track 15 or so substitute custodians in a school system for time sheet, etc. anyone interested I can e-mail the sheets.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bis</title>
		<link>http://excelhints.com/2009/01/24/separate-full-name-into-first-last-name/comment-page-1/#comment-1154</link>
		<dc:creator>Bis</dc:creator>
		<pubDate>Mon, 28 Jun 2010 12:34:12 +0000</pubDate>
		<guid isPermaLink="false">http://excelhints.com/?p=541#comment-1154</guid>
		<description>To seperate the last name, I use:
=RIGHT(A1,LEN(A1)-FIND(&quot; &quot;,A1))

Sometime the names can appear as FirstName:LastName in stead of a space in-between, so the seperator can be updated in the formula
=RIGHT(A1,LEN(A1)-FIND(&quot;:&quot;,A1))</description>
		<content:encoded><![CDATA[<p>To seperate the last name, I use:<br />
=RIGHT(A1,LEN(A1)-FIND(&#8221; &#8220;,A1))</p>
<p>Sometime the names can appear as FirstName:LastName in stead of a space in-between, so the seperator can be updated in the formula<br />
=RIGHT(A1,LEN(A1)-FIND(&#8220;:&#8221;,A1))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deb</title>
		<link>http://excelhints.com/2009/01/24/separate-full-name-into-first-last-name/comment-page-1/#comment-1153</link>
		<dc:creator>Deb</dc:creator>
		<pubDate>Fri, 25 Jun 2010 13:37:25 +0000</pubDate>
		<guid isPermaLink="false">http://excelhints.com/?p=541#comment-1153</guid>
		<description>I have one, my info is John A. Smith, MD and I need it to be Smith, John A DO or even into indivicual columns, whichever is easier.  Anyone able to help me with this?  Thanks much for looking!</description>
		<content:encoded><![CDATA[<p>I have one, my info is John A. Smith, MD and I need it to be Smith, John A DO or even into indivicual columns, whichever is easier.  Anyone able to help me with this?  Thanks much for looking!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ajay</title>
		<link>http://excelhints.com/2009/01/24/separate-full-name-into-first-last-name/comment-page-1/#comment-1151</link>
		<dc:creator>Ajay</dc:creator>
		<pubDate>Thu, 24 Jun 2010 04:34:29 +0000</pubDate>
		<guid isPermaLink="false">http://excelhints.com/?p=541#comment-1151</guid>
		<description>if i have name like Ajay Kumar Yadav and i need to separate every name like
Ajay
Kumar
Yadav

Please advise</description>
		<content:encoded><![CDATA[<p>if i have name like Ajay Kumar Yadav and i need to separate every name like<br />
Ajay<br />
Kumar<br />
Yadav</p>
<p>Please advise</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tanya</title>
		<link>http://excelhints.com/2009/01/24/separate-full-name-into-first-last-name/comment-page-1/#comment-1114</link>
		<dc:creator>tanya</dc:creator>
		<pubDate>Thu, 20 May 2010 18:27:15 +0000</pubDate>
		<guid isPermaLink="false">http://excelhints.com/?p=541#comment-1114</guid>
		<description>JOHN YOU ARE AWESOME!!!!

Thank you so much for the quick response and saving my hours of copy&amp;pasting!!!</description>
		<content:encoded><![CDATA[<p>JOHN YOU ARE AWESOME!!!!</p>
<p>Thank you so much for the quick response and saving my hours of copy&amp;pasting!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: john</title>
		<link>http://excelhints.com/2009/01/24/separate-full-name-into-first-last-name/comment-page-1/#comment-1113</link>
		<dc:creator>john</dc:creator>
		<pubDate>Thu, 20 May 2010 18:17:21 +0000</pubDate>
		<guid isPermaLink="false">http://excelhints.com/?p=541#comment-1113</guid>
		<description>Hi Tanya,

There are many ways to do this, try this:

=RIGHT(A1,LEN(A1)-FIND(&quot;,&quot;,A1)-1) &amp;&quot; &quot;&amp;LEFT(A1,FIND(&quot;,&quot;,A1)-1)

You might also want to look into the Text to Columns feature of Excel.</description>
		<content:encoded><![CDATA[<p>Hi Tanya,</p>
<p>There are many ways to do this, try this:</p>
<p>=RIGHT(A1,LEN(A1)-FIND(&#8220;,&#8221;,A1)-1) &#038;&#8221; &#8220;&#038;LEFT(A1,FIND(&#8220;,&#8221;,A1)-1)</p>
<p>You might also want to look into the Text to Columns feature of Excel.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tanya</title>
		<link>http://excelhints.com/2009/01/24/separate-full-name-into-first-last-name/comment-page-1/#comment-1112</link>
		<dc:creator>tanya</dc:creator>
		<pubDate>Thu, 20 May 2010 18:08:54 +0000</pubDate>
		<guid isPermaLink="false">http://excelhints.com/?p=541#comment-1112</guid>
		<description>thank you for the 
=RIGHT(A1,LEN(A1)-FIND(” “,A1)) &amp;”, “&amp;LEFT(A1,FIND(” “,A1)-1)

formula!

I&#039;m able to &quot;Smith, John&quot; into &quot;John Smith,&quot;.  Can you tell me how to remove the comma at the end?

Please and thank you!!
tanya</description>
		<content:encoded><![CDATA[<p>thank you for the<br />
=RIGHT(A1,LEN(A1)-FIND(” “,A1)) &amp;”, “&amp;LEFT(A1,FIND(” “,A1)-1)</p>
<p>formula!</p>
<p>I&#8217;m able to &#8220;Smith, John&#8221; into &#8220;John Smith,&#8221;.  Can you tell me how to remove the comma at the end?</p>
<p>Please and thank you!!<br />
tanya</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sarina</title>
		<link>http://excelhints.com/2009/01/24/separate-full-name-into-first-last-name/comment-page-1/#comment-1105</link>
		<dc:creator>sarina</dc:creator>
		<pubDate>Mon, 10 May 2010 16:06:29 +0000</pubDate>
		<guid isPermaLink="false">http://excelhints.com/?p=541#comment-1105</guid>
		<description>I cut and paste it into 5 cells, but would love to drop it in one cell and then have it broken up into the 5 cells for me or whatever else you can recommend.  It comes in that arrangement as written -  3 lines of info.</description>
		<content:encoded><![CDATA[<p>I cut and paste it into 5 cells, but would love to drop it in one cell and then have it broken up into the 5 cells for me or whatever else you can recommend.  It comes in that arrangement as written &#8211;  3 lines of info.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
