<?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: Remove all the Numbers From a Row or Column.</title>
	<atom:link href="http://www.theworldofoffice.com/excel-tips-tricks/remove-numbers-row-column/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.theworldofoffice.com/excel-tips-tricks/remove-numbers-row-column/</link>
	<description></description>
	<lastBuildDate>Wed, 28 Jul 2010 16:51:12 +1300</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Will Simpson</title>
		<link>http://www.theworldofoffice.com/excel-tips-tricks/remove-numbers-row-column/comment-page-1/#comment-4183</link>
		<dc:creator>Will Simpson</dc:creator>
		<pubDate>Tue, 01 Jun 2010 14:37:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.theworldofoffice.com/excel-tips-tricks/remove-numbers-row-column/#comment-4183</guid>
		<description>Try the below, this removes numbers and also commas, but you should be able to edit to remove / retain what you want
&#160;
&#160;
&lt;em&gt;&lt;strong&gt;Public Function RemNum(wsText As String) As String&lt;/strong&gt;&lt;/em&gt;
&lt;em&gt;&lt;strong&gt;wsOutput = &quot;&quot; &lt;/strong&gt;&lt;/em&gt;
&lt;em&gt;&lt;strong&gt;For i = 1 To Len(wsText)&lt;/strong&gt;&lt;/em&gt;
&lt;em&gt;&lt;strong&gt;&#160;&#160;&#160; If Not Mid(wsText, i, 1) Like &quot;[0-9]&quot; And Not Mid(wsText, i, 1) = &quot;,&quot; Then wsOutput = wsOutput &amp; Mid(wsText, i, 1)&lt;/strong&gt;&lt;/em&gt;
&lt;em&gt;&lt;strong&gt;Next i&lt;/strong&gt;&lt;/em&gt;
&lt;em&gt;&lt;strong&gt;RemNum = wsOutput&lt;/strong&gt;&lt;/em&gt;
&lt;em&gt;&lt;strong&gt;End Function&lt;/strong&gt;&lt;/em&gt;</description>
		<content:encoded><![CDATA[<p>Try the below, this removes numbers and also commas, but you should be able to edit to remove / retain what you want<br />
&nbsp;<br />
&nbsp;<br />
<em><strong>Public Function RemNum(wsText As String) As String</strong></em><br />
<em><strong>wsOutput = &quot;&quot; </strong></em><br />
<em><strong>For i = 1 To Len(wsText)</strong></em><br />
<em><strong>&nbsp;&nbsp;&nbsp; If Not Mid(wsText, i, 1) Like &quot;[0-9]&quot; And Not Mid(wsText, i, 1) = &quot;,&quot; Then wsOutput = wsOutput &amp; Mid(wsText, i, 1)</strong></em><br />
<em><strong>Next i</strong></em><br />
<em><strong>RemNum = wsOutput</strong></em><br />
<em><strong>End Function</strong></em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan Kennedy</title>
		<link>http://www.theworldofoffice.com/excel-tips-tricks/remove-numbers-row-column/comment-page-1/#comment-4118</link>
		<dc:creator>Ryan Kennedy</dc:creator>
		<pubDate>Tue, 30 Mar 2010 03:46:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.theworldofoffice.com/excel-tips-tricks/remove-numbers-row-column/#comment-4118</guid>
		<description>That removed the spaces as well, which is a problem.</description>
		<content:encoded><![CDATA[<p>That removed the spaces as well, which is a problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://www.theworldofoffice.com/excel-tips-tricks/remove-numbers-row-column/comment-page-1/#comment-3755</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Wed, 19 Aug 2009 15:55:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.theworldofoffice.com/excel-tips-tricks/remove-numbers-row-column/#comment-3755</guid>
		<description>The tip is exactly what I want to do, but my problem is, how do I save the macro? Obviously I&#039;m missing a step, because when I attempt to use the NumberOut formula, I&#039;m told it is an &quot;ambiguous name.&quot; What am I missing?</description>
		<content:encoded><![CDATA[<p>The tip is exactly what I want to do, but my problem is, how do I save the macro? Obviously I&#8217;m missing a step, because when I attempt to use the NumberOut formula, I&#8217;m told it is an &#8220;ambiguous name.&#8221; What am I missing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sdg</title>
		<link>http://www.theworldofoffice.com/excel-tips-tricks/remove-numbers-row-column/comment-page-1/#comment-3550</link>
		<dc:creator>sdg</dc:creator>
		<pubDate>Mon, 27 Apr 2009 16:46:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.theworldofoffice.com/excel-tips-tricks/remove-numbers-row-column/#comment-3550</guid>
		<description>Great function. Very helpful.

Similar to Kris, I would like to keep the spaces - I tried to change the code from &quot;Case 0 To 64, 123 To 197&quot; to &quot;Case 0 To 31, 33 To 64, 123 To 197&quot; (I looked up the ascii for space and found out it was 33), but this returned an error.

Any help you can offer would be greatly appreciated.</description>
		<content:encoded><![CDATA[<p>Great function. Very helpful.</p>
<p>Similar to Kris, I would like to keep the spaces &#8211; I tried to change the code from &#8220;Case 0 To 64, 123 To 197&#8243; to &#8220;Case 0 To 31, 33 To 64, 123 To 197&#8243; (I looked up the ascii for space and found out it was 33), but this returned an error.</p>
<p>Any help you can offer would be greatly appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kris</title>
		<link>http://www.theworldofoffice.com/excel-tips-tricks/remove-numbers-row-column/comment-page-1/#comment-3172</link>
		<dc:creator>Kris</dc:creator>
		<pubDate>Mon, 16 Feb 2009 17:45:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.theworldofoffice.com/excel-tips-tricks/remove-numbers-row-column/#comment-3172</guid>
		<description>Suppose i have &quot;Joseph John 237&quot; in the cell and with the above formula it is reduced to &quot;JosephJohn&quot;. I wish for it to be &quot;Joseph John&quot; instead. Many thanks for the above trick. Saved me a lot of time.</description>
		<content:encoded><![CDATA[<p>Suppose i have &#8220;Joseph John 237&#8243; in the cell and with the above formula it is reduced to &#8220;JosephJohn&#8221;. I wish for it to be &#8220;Joseph John&#8221; instead. Many thanks for the above trick. Saved me a lot of time.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.487 seconds -->
