<?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: VBA: Remove Characters from Left or Right Side of Variable Length String</title>
	<atom:link href="http://www.automateexcel.com/2005/02/18/excel_vba_remove_n_characters_from_left/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.automateexcel.com/2005/02/18/excel_vba_remove_n_characters_from_left/</link>
	<description>Everything Excel. Only Excel.</description>
	<lastBuildDate>Mon, 21 Nov 2011 07:25:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Dave</title>
		<link>http://www.automateexcel.com/2005/02/18/excel_vba_remove_n_characters_from_left/comment-page-1/#comment-1681</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Thu, 09 Sep 2010 02:48:54 +0000</pubDate>
		<guid isPermaLink="false">#comment-1681</guid>
		<description>What if you need the string minus the 1st 2 and last 2 characters?</description>
		<content:encoded><![CDATA[<p>What if you need the string minus the 1st 2 and last 2 characters?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: leo</title>
		<link>http://www.automateexcel.com/2005/02/18/excel_vba_remove_n_characters_from_left/comment-page-1/#comment-1663</link>
		<dc:creator>leo</dc:creator>
		<pubDate>Thu, 19 Aug 2010 09:42:47 +0000</pubDate>
		<guid isPermaLink="false">#comment-1663</guid>
		<description>There is 3 spaces after PFS
is it possible for me to remove all 3 spaces after the word &quot;PFS&quot;?</description>
		<content:encoded><![CDATA[<p>There is 3 spaces after PFS<br />
is it possible for me to remove all 3 spaces after the word &#8220;PFS&#8221;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: leo</title>
		<link>http://www.automateexcel.com/2005/02/18/excel_vba_remove_n_characters_from_left/comment-page-1/#comment-1662</link>
		<dc:creator>leo</dc:creator>
		<pubDate>Thu, 19 Aug 2010 09:41:27 +0000</pubDate>
		<guid isPermaLink="false">#comment-1662</guid>
		<description>help...
If I have this string &quot;EQS17073 EX8163 CFADK 190412 HKD 5 PFS  &quot;
how can i delete the space after &quot;PFS&quot;
please help me</description>
		<content:encoded><![CDATA[<p>help&#8230;<br />
If I have this string &#8220;EQS17073 EX8163 CFADK 190412 HKD 5 PFS  &#8221;<br />
how can i delete the space after &#8220;PFS&#8221;<br />
please help me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://www.automateexcel.com/2005/02/18/excel_vba_remove_n_characters_from_left/comment-page-1/#comment-1288</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Thu, 23 Jul 2009 18:44:49 +0000</pubDate>
		<guid isPermaLink="false">#comment-1288</guid>
		<description>I am looing at the post for removing text from a string MsgBox Right(Mystring, Len(Mystring) – 1).  This places a msgbox on screen but does not change the text in the cell.  How do I change the text string in the cell?</description>
		<content:encoded><![CDATA[<p>I am looing at the post for removing text from a string MsgBox Right(Mystring, Len(Mystring) – 1).  This places a msgbox on screen but does not change the text in the cell.  How do I change the text string in the cell?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gordon</title>
		<link>http://www.automateexcel.com/2005/02/18/excel_vba_remove_n_characters_from_left/comment-page-1/#comment-1168</link>
		<dc:creator>Gordon</dc:creator>
		<pubDate>Fri, 20 Mar 2009 10:37:38 +0000</pubDate>
		<guid isPermaLink="false">#comment-1168</guid>
		<description>@Steve - If I understand what your after, this is easy with Replace:

newString = Replace(oldString, &quot;-&quot;, &quot;&quot;)</description>
		<content:encoded><![CDATA[<p>@Steve &#8211; If I understand what your after, this is easy with Replace:</p>
<p>newString = Replace(oldString, &#8220;-&#8221;, &#8220;&#8221;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.automateexcel.com/2005/02/18/excel_vba_remove_n_characters_from_left/comment-page-1/#comment-1167</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Thu, 19 Mar 2009 11:58:13 +0000</pubDate>
		<guid isPermaLink="false">#comment-1167</guid>
		<description>sorry, should read.

newstring = Left(oldstring, InStr(oldstring, “-”) - 1) &amp; Right(oldstring, InStr(oldstring, “-”) - 1)</description>
		<content:encoded><![CDATA[<p>sorry, should read.</p>
<p>newstring = Left(oldstring, InStr(oldstring, “-”) &#8211; 1) &amp; Right(oldstring, InStr(oldstring, “-”) &#8211; 1)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.automateexcel.com/2005/02/18/excel_vba_remove_n_characters_from_left/comment-page-1/#comment-1166</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Thu, 19 Mar 2009 11:57:04 +0000</pubDate>
		<guid isPermaLink="false">#comment-1166</guid>
		<description>I&#039;m also looking for this function if anyone knows it.  I&#039;m having to make do with the following at the moment,

oldstring = &quot;111-111&quot;

newstring = Left(oldstring, InStr(oldstring, &quot;-&quot;) - 1) &amp; Right(oldstring, InStr(oldstring, &quot;-&quot;) + 1)

Its a bit naff and only works if theres 1 instance of &quot;-&quot;.

thanks.</description>
		<content:encoded><![CDATA[<p>I&#8217;m also looking for this function if anyone knows it.  I&#8217;m having to make do with the following at the moment,</p>
<p>oldstring = &#8220;111-111&#8243;</p>
<p>newstring = Left(oldstring, InStr(oldstring, &#8220;-&#8221;) &#8211; 1) &amp; Right(oldstring, InStr(oldstring, &#8220;-&#8221;) + 1)</p>
<p>Its a bit naff and only works if theres 1 instance of &#8220;-&#8221;.</p>
<p>thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Glenn</title>
		<link>http://www.automateexcel.com/2005/02/18/excel_vba_remove_n_characters_from_left/comment-page-1/#comment-1139</link>
		<dc:creator>Glenn</dc:creator>
		<pubDate>Sun, 01 Feb 2009 02:28:21 +0000</pubDate>
		<guid isPermaLink="false">#comment-1139</guid>
		<description>Help if you can
I need to remove the hyphen from the middle of a text string
example 
I have 4011-5555
I need 40115555
is there a way to remove the character from a range of cells withou manually removing it</description>
		<content:encoded><![CDATA[<p>Help if you can<br />
I need to remove the hyphen from the middle of a text string<br />
example<br />
I have 4011-5555<br />
I need 40115555<br />
is there a way to remove the character from a range of cells withou manually removing it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.automateexcel.com/2005/02/18/excel_vba_remove_n_characters_from_left/comment-page-1/#comment-90</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Mon, 21 Feb 2005 21:21:20 +0000</pubDate>
		<guid isPermaLink="false">#comment-90</guid>
		<description>Excel Left Function VS. Excel Mid Function&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.googlefight.com/index.php?lang=en_GB&amp;word1=excel+left+function&amp;word2=excel+mid+function&quot; rel=&quot;nofollow&quot;&gt;Excel Left Function wins the GoogleFight&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
lol</description>
		<content:encoded><![CDATA[<p>Excel Left Function VS. Excel Mid Function</p>
<p><a href="http://www.googlefight.com/index.php?lang=en_GB&amp;word1=excel+left+function&amp;word2=excel+mid+function" rel="nofollow">Excel Left Function wins the GoogleFight</a></p>
<p>lol</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ross</title>
		<link>http://www.automateexcel.com/2005/02/18/excel_vba_remove_n_characters_from_left/comment-page-1/#comment-89</link>
		<dc:creator>ross</dc:creator>
		<pubDate>Mon, 21 Feb 2005 11:39:55 +0000</pubDate>
		<guid isPermaLink="false">#comment-89</guid>
		<description>thanks - I&#039;m (to coin an English phase) &quot;blowing out of my as#) at the mo, but I have just got www.methodsinexcel.co.uk booked, and will be moving the </description>
		<content:encoded><![CDATA[<p>thanks &#8211; I&#8217;m (to coin an English phase) &#8220;blowing out of my as#) at the mo, but I have just got <a href="http://www.methodsinexcel.co.uk" rel="nofollow">http://www.methodsinexcel.co.uk</a> booked, and will be moving the</p>
]]></content:encoded>
	</item>
</channel>
</rss>

