<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Automate Excel &#187; number</title>
	<atom:link href="http://www.automateexcel.com/tag/number/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.automateexcel.com</link>
	<description>Everything Excel. Only Excel.</description>
	<lastBuildDate>Wed, 24 Nov 2010 21:08:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>VBA: Extract Number From String</title>
		<link>http://www.automateexcel.com/2008/11/03/vba-extract-number-from-string/</link>
		<comments>http://www.automateexcel.com/2008/11/03/vba-extract-number-from-string/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 16:16:49 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[Strings]]></category>
		<category><![CDATA[extract]]></category>
		<category><![CDATA[number]]></category>
		<category><![CDATA[string]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=1109</guid>
		<description><![CDATA[The following function will extract the numerical portion from a string: Function Extract_Number_from_Text(Phrase As String) As Double Dim Length_of_String As Integer Dim Current_Pos As Integer Dim Temp As String Length_of_String = Len(Phrase) Temp = "" For Current_Pos = 1 To Length_of_String If (Mid(Phrase, Current_Pos, 1) = "-") Then Temp = Temp &#38; Mid(Phrase, Current_Pos, 1) [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/11/03/vba-extract-number-from-string/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Sum by Color</title>
		<link>http://www.automateexcel.com/2008/10/04/sum-by-color/</link>
		<comments>http://www.automateexcel.com/2008/10/04/sum-by-color/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 10:29:30 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[Formulas]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[number]]></category>
		<category><![CDATA[sum]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=937</guid>
		<description><![CDATA[The following function calculates the total value of all the cells in a particular range that are a particular color: Function Color_By_Numbers(Color_Range As Range, Color_Index As Integer) As Double ' Dim Color_By_Numbers As Double Dim Cell 'Will look at cells that are in the range and if 'the color interior property matches the cell color [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/10/04/sum-by-color/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>VBA Function To Calculate Number of Words in a String</title>
		<link>http://www.automateexcel.com/2008/09/20/vba-function-to-calculate-number-of-words-in-a-string/</link>
		<comments>http://www.automateexcel.com/2008/09/20/vba-function-to-calculate-number-of-words-in-a-string/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 08:19:18 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[Strings]]></category>
		<category><![CDATA[calculate]]></category>
		<category><![CDATA[number]]></category>
		<category><![CDATA[string]]></category>
		<category><![CDATA[VBA]]></category>
		<category><![CDATA[words]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=891</guid>
		<description><![CDATA[The following VBA function counts the number of words in a string: Function Number_of_Words(Text_String As String) As Integer 'Function counts the number of words in a string 'by looking at each character and seeing whether it is a space or not Number_of_Words = 0 Dim String_Length As Integer Dim Current_Character As Integer String_Length = Len(Text_String) [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/09/20/vba-function-to-calculate-number-of-words-in-a-string/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

