<?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>Excel VBA Macro &#187; Excel Formula</title>
	<atom:link href="http://excelvbamacro.com/category/formula/feed" rel="self" type="application/rss+xml" />
	<link>http://excelvbamacro.com</link>
	<description>Excel VBA Macro Tutorial and Examples</description>
	<lastBuildDate>Wed, 25 May 2011 08:37:22 +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>How to Get a Full File Path in Excel?</title>
		<link>http://excelvbamacro.com/full-file-path-excel.html</link>
		<comments>http://excelvbamacro.com/full-file-path-excel.html#comments</comments>
		<pubDate>Wed, 19 May 2010 13:24:29 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Excel Formula]]></category>
		<category><![CDATA[Excel VBA Function]]></category>
		<category><![CDATA[Workbook and Worksheet]]></category>
		<category><![CDATA[file path]]></category>
		<category><![CDATA[fullname]]></category>
		<category><![CDATA[Function]]></category>

		<guid isPermaLink="false">http://excelvbamacro.com/?p=571</guid>
		<description><![CDATA[Ever needed to find out the full path of your current file? What I mean by full path here is the full location of the active file including the directory path and full file name. If you did, then what &#8230; <a href="http://excelvbamacro.com/full-file-path-excel.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://excelvbamacro.com/full-file-path-excel.html/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Remove Non-AlphaNumeric Characters from String</title>
		<link>http://excelvbamacro.com/remove-non-alphanumeric-characters.html</link>
		<comments>http://excelvbamacro.com/remove-non-alphanumeric-characters.html#comments</comments>
		<pubDate>Tue, 18 May 2010 13:11:27 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Excel Formula]]></category>
		<category><![CDATA[Excel VBA Function]]></category>
		<category><![CDATA[alphanumeric]]></category>
		<category><![CDATA[string]]></category>

		<guid isPermaLink="false">http://excelvbamacro.com/?p=568</guid>
		<description><![CDATA[The function below will allow us to remove a non alphanumeric character from an input string. Be careful though, lengther the string, more time needed to evaluate each string on the sentence. To bad that I don&#8217;t have any idea &#8230; <a href="http://excelvbamacro.com/remove-non-alphanumeric-characters.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://excelvbamacro.com/remove-non-alphanumeric-characters.html/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>How to get an Acronym using Excel VBA?</title>
		<link>http://excelvbamacro.com/acronym-excel-vba.html</link>
		<comments>http://excelvbamacro.com/acronym-excel-vba.html#comments</comments>
		<pubDate>Wed, 17 Jun 2009 07:25:04 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Excel Formula]]></category>
		<category><![CDATA[acronym]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[excel macro example]]></category>
		<category><![CDATA[excel vba example]]></category>
		<category><![CDATA[left]]></category>
		<category><![CDATA[split]]></category>
		<category><![CDATA[ucase]]></category>

		<guid isPermaLink="false">http://excelvbamacro.com/?p=530</guid>
		<description><![CDATA[The purpose of the following example of Excel VBA macro is to get the acronym or an abbreviation of each of the first letter of any given words. Function Acronym(Words As Variant) As String Dim aWord() As String, ix As &#8230; <a href="http://excelvbamacro.com/acronym-excel-vba.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://excelvbamacro.com/acronym-excel-vba.html/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Find the Last Day of any Month</title>
		<link>http://excelvbamacro.com/find-the-last-day-of-any-month.html</link>
		<comments>http://excelvbamacro.com/find-the-last-day-of-any-month.html#comments</comments>
		<pubDate>Tue, 09 Jun 2009 03:42:11 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Excel Formula]]></category>
		<category><![CDATA[excel formula]]></category>
		<category><![CDATA[excel vba end of month]]></category>
		<category><![CDATA[last day of month]]></category>

		<guid isPermaLink="false">http://excelvbamacro.com/?p=516</guid>
		<description><![CDATA[Simple Microsoft Excel formula to find the last day of any given month. ' =DATE(YEAR(A1),MONTH(A1)+1,0) ' Posts Related to Find the Last Day of any MonthHow to create Excel function/formula?This is the reason why the power of Excel when combined &#8230; <a href="http://excelvbamacro.com/find-the-last-day-of-any-month.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://excelvbamacro.com/find-the-last-day-of-any-month.html/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Auto Expanding VLOOKUP Table Array</title>
		<link>http://excelvbamacro.com/auto-expanding-vlookup-table-array.html</link>
		<comments>http://excelvbamacro.com/auto-expanding-vlookup-table-array.html#comments</comments>
		<pubDate>Thu, 02 Apr 2009 11:06:53 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Excel Formula]]></category>
		<category><![CDATA[excel 2003 vlookup]]></category>
		<category><![CDATA[excel formulas vlookup]]></category>
		<category><![CDATA[excel vba vlookup]]></category>
		<category><![CDATA[excel vlookup table array]]></category>
		<category><![CDATA[lookup table]]></category>
		<category><![CDATA[microsoft excel vlookup]]></category>
		<category><![CDATA[vlookup array formula]]></category>
		<category><![CDATA[vlookup excel vba]]></category>
		<category><![CDATA[VLOOKUP macro]]></category>
		<category><![CDATA[vlookup pivot tables]]></category>
		<category><![CDATA[vlookup VBA macro]]></category>

		<guid isPermaLink="false">http://excelvbamacro.com/?p=431</guid>
		<description><![CDATA[Ok, this time I want to talk about how to create a vlookup table array that automatically expanding in accordance with the numbers of available data. As we know, the basic form of Excel VLOOKUP to look for A1 value &#8230; <a href="http://excelvbamacro.com/auto-expanding-vlookup-table-array.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://excelvbamacro.com/auto-expanding-vlookup-table-array.html/feed</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>How to create Excel function/formula?</title>
		<link>http://excelvbamacro.com/how-to-create-excel-functionformula.html</link>
		<comments>http://excelvbamacro.com/how-to-create-excel-functionformula.html#comments</comments>
		<pubDate>Sat, 14 Jun 2008 02:14:52 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Excel Formula]]></category>

		<guid isPermaLink="false">http://localhost/excelvbamacro/?p=4</guid>
		<description><![CDATA[This is the reason why the power of Excel when combined with VBA is almost limitless. When we can’t found any Excel function that suite our need, we can built it easily using Excel VBA. If Excel macro or SUB &#8230; <a href="http://excelvbamacro.com/how-to-create-excel-functionformula.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://excelvbamacro.com/how-to-create-excel-functionformula.html/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>

