<?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>Hundreds of Excel Tips &#38; Tricks</description>
	<lastBuildDate>Wed, 10 Mar 2010 07:03:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<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>
	<item>
		<title>By: Mark</title>
		<link>http://www.automateexcel.com/2005/02/18/excel_vba_remove_n_characters_from_left/comment-page-1/#comment-88</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Sun, 20 Feb 2005 22:10:37 +0000</pubDate>
		<guid isPermaLink="false">#comment-88</guid>
		<description>&lt;a href=&quot;http://www.methodsinexcel.here.ws/&quot; rel=&quot;nofollow&quot;&gt;MIE&lt;/a&gt; is coming along nicely also, thanks for the big link.  Let me know when you want a reciprocal.&lt;br /&gt;
&lt;br /&gt;
I know your not much on doing a blog yourself, however an RSS feed when you add articles would be awesome.  From an RSS reader&#039;s standpoint anyway.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
</description>
		<content:encoded><![CDATA[<p><a href="http://www.methodsinexcel.here.ws/" rel="nofollow">MIE</a> is coming along nicely also, thanks for the big link.  Let me know when you want a reciprocal.</p>
<p>I know your not much on doing a blog yourself, however an RSS feed when you add articles would be awesome.  From an RSS reader&#8217;s standpoint anyway.</p>
<p></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-87</link>
		<dc:creator>ross</dc:creator>
		<pubDate>Sun, 20 Feb 2005 08:25:14 +0000</pubDate>
		<guid isPermaLink="false">#comment-87</guid>
		<description>Mark, it&#039;s my opinion that this is the prettiest excel blog on the web!!!  - i like the layout as it is - hey but if you wanta change it don&#039;t let me stop you!</description>
		<content:encoded><![CDATA[<p>Mark, it&#8217;s my opinion that this is the prettiest excel blog on the web!!!  &#8211; i like the layout as it is &#8211; hey but if you wanta change it don&#8217;t let me stop you!</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-86</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Sat, 19 Feb 2005 15:34:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-86</guid>
		<description>LOL, the suns reflecting off my forehead straight onto the screen. Actually I noticed the odd shadows when I put this layout up and thought &quot;nobody will notice&quot;.&lt;br /&gt;
&lt;br /&gt;
The tan and blues are from taking a color picker to a screenshot of Excel.&lt;br /&gt;
&lt;br /&gt;
I&#039;m thinking of tweaking the layout again for the fun of it.  -edit-&lt;br /&gt;
&lt;br /&gt;
This site is my first leap onto the web, so everything from playing with advt&#039;s, to layouts, to sydicating this site on others (exceltip (not anymore)), to some content: is an experiment just as much as for function.</description>
		<content:encoded><![CDATA[<p>LOL, the suns reflecting off my forehead straight onto the screen. Actually I noticed the odd shadows when I put this layout up and thought &#8220;nobody will notice&#8221;.</p>
<p>The tan and blues are from taking a color picker to a screenshot of Excel.</p>
<p>I&#8217;m thinking of tweaking the layout again for the fun of it.  -edit-</p>
<p>This site is my first leap onto the web, so everything from playing with advt&#8217;s, to layouts, to sydicating this site on others (exceltip (not anymore)), to some content: is an experiment just as much as for function.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.235 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-03-19 03:42:29 -->
