<?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; VBA</title>
	<atom:link href="http://www.automateexcel.com/tag/vba/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 Function to Show Cell Formula</title>
		<link>http://www.automateexcel.com/2008/10/24/vba-function-to-show-cell-formula/</link>
		<comments>http://www.automateexcel.com/2008/10/24/vba-function-to-show-cell-formula/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 12:58:32 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[Cells, Columns & Rows]]></category>
		<category><![CDATA[udf]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=1045</guid>
		<description><![CDATA[The following UDF will return the formulae for a given cell reference: Function Show_Cell_Formulae(Cell As Range) As String Show_Cell_Formulae = "Cell " &#38; Cell.Address &#38; " has the formulae : ' " &#38; Cell.Formula &#38; " '" End Function So if we have: Where the cell B7 has the formulae : ‘=MAX(B5:G5) then we can [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/10/24/vba-function-to-show-cell-formula/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create a Bar Chart using VBA</title>
		<link>http://www.automateexcel.com/2008/10/15/how-to-create-a-bar-chart-using-vba/</link>
		<comments>http://www.automateexcel.com/2008/10/15/how-to-create-a-bar-chart-using-vba/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 02:15:35 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Charts]]></category>
		<category><![CDATA[VBA]]></category>
		<category><![CDATA[bar]]></category>
		<category><![CDATA[chart]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=988</guid>
		<description><![CDATA[The following tutorial will describe how to create a bar chart using VBA. Steps: 1. Enter the VBA project window by right clicking on a sheet name and selecting “View Code” or by selecting “ALT, F11”. 2. On the right hand side, right click on your project name and select inset “module”. 3. Copy and [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/10/15/how-to-create-a-bar-chart-using-vba/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>VBA: Highlight Duplicates in a Range</title>
		<link>http://www.automateexcel.com/2008/10/13/vba-highlight-duplicates-in-a-range/</link>
		<comments>http://www.automateexcel.com/2008/10/13/vba-highlight-duplicates-in-a-range/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 14:05:31 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[Cells, Columns & Rows]]></category>
		<category><![CDATA[duplicates]]></category>
		<category><![CDATA[dynamic ranges]]></category>
		<category><![CDATA[highlight]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=959</guid>
		<description><![CDATA[The following subroutine will highlight all the duplicate values in range in yellow. It does not matter whether the values are text or numbers. It uses Excel’s COUNTIF function to count up the duplicates and then sets the colour to yellow: Sub Highlight_Duplicates(Values As Range) Dim Cell For Each Cell In Values If WorksheetFunction.CountIf(Values, Cell.Value) [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/10/13/vba-highlight-duplicates-in-a-range/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>VBA: User Defined Function that Counts Selected Cells</title>
		<link>http://www.automateexcel.com/2008/10/04/vba-user-defined-function-that-counts-selected-cells/</link>
		<comments>http://www.automateexcel.com/2008/10/04/vba-user-defined-function-that-counts-selected-cells/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 10:51:30 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[Cells, Columns & Rows]]></category>
		<category><![CDATA[cells]]></category>
		<category><![CDATA[count]]></category>
		<category><![CDATA[selected]]></category>
		<category><![CDATA[user defined]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=949</guid>
		<description><![CDATA[The following function will examine a range of Excel cells and return the number that fall within a specified range: Function Count_Selected_Cells(Data_Range As Range, Min As Double, Max As Double) As Integer Dim Cell Count_Selected_Cells = 0# For Each Cell In Data_Range If ((Cell.Value &#62;= Min) And (Cell.Value &#60;= Max)) Then Count_Selected_Cells = Count_Selected_Cells + [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/10/04/vba-user-defined-function-that-counts-selected-cells/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBA: Calculate Acronyms from Strings</title>
		<link>http://www.automateexcel.com/2008/10/04/vba-calculate-acronyms-from-strings/</link>
		<comments>http://www.automateexcel.com/2008/10/04/vba-calculate-acronyms-from-strings/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 10:45:26 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[Strings]]></category>
		<category><![CDATA[acronyms]]></category>
		<category><![CDATA[calculate]]></category>
		<category><![CDATA[strings]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=946</guid>
		<description><![CDATA[The following function evaluates Acronyms from strings i.e it concatenates the first letter in every word in a string. E.g “trees are green” becomes “TAG”. The routine traverses every character in a string and if it is a space then it takes the next character in the string. Before evaluating the string, it removes all [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/10/04/vba-calculate-acronyms-from-strings/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>VBA: UDF to perform a 3-parameter Vlookup</title>
		<link>http://www.automateexcel.com/2008/10/04/vba-udf-to-perform-a-3-parameter-vlookup/</link>
		<comments>http://www.automateexcel.com/2008/10/04/vba-udf-to-perform-a-3-parameter-vlookup/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 10:36:32 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[LOOKUP]]></category>
		<category><![CDATA[VBA]]></category>
		<category><![CDATA[parameter]]></category>
		<category><![CDATA[udf]]></category>
		<category><![CDATA[vlookup]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=942</guid>
		<description><![CDATA[Consider the following data table: The standard Vlookup function within Excel has the following format: VLOOKUP(“”Mark”, B6:G12”,2,FALSE) Which will return “Brown”. However, what about if we wanted to look up on 2 or more columns e.g the first name, last name and the age in the above table ? The following UDF allows us to [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/10/04/vba-udf-to-perform-a-3-parameter-vlookup/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>VBA: Excel&#8217;s Colour Scheme</title>
		<link>http://www.automateexcel.com/2008/09/30/vba-excels-colour-scheme/</link>
		<comments>http://www.automateexcel.com/2008/09/30/vba-excels-colour-scheme/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 14:47:56 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[VBA]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[colour]]></category>
		<category><![CDATA[scheme]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=933</guid>
		<description><![CDATA[To change the colour of a cell we can use: Cell.Interior.ColorIndex = Num Where: • Cell is the cell reference • Interior – refers to the colour of the actual cell colour (The interior property) • Colourindex is a value between 1 and 56 for one of Excel’s 56 predefined colours And Num is the [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/09/30/vba-excels-colour-scheme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBA and Vlookup: Find occurence of string</title>
		<link>http://www.automateexcel.com/2008/09/30/vba-and-vlookup-find-occurence-of-string/</link>
		<comments>http://www.automateexcel.com/2008/09/30/vba-and-vlookup-find-occurence-of-string/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 14:40:43 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[LOOKUP]]></category>
		<category><![CDATA[VBA]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[occurence]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[string]]></category>
		<category><![CDATA[vlookup]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=928</guid>
		<description><![CDATA[The standard Vlookup function can be used to find a value within a table: And we would use VLOOKUP like so: VLOOKUP(A1:10,”Dog”,2,FALSE) to give the value 30. However, in this list we see that Dog occurs 3 times. The standard VLOOKUP function will only return the value associated with the first item in this list. [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/09/30/vba-and-vlookup-find-occurence-of-string/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Interacting between VBA and Excel – Functions</title>
		<link>http://www.automateexcel.com/2008/09/30/interacting-between-vba-and-excel-%e2%80%93-functions/</link>
		<comments>http://www.automateexcel.com/2008/09/30/interacting-between-vba-and-excel-%e2%80%93-functions/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 14:31:58 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[Charts]]></category>
		<category><![CDATA[VBA]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[graph]]></category>
		<category><![CDATA[interact]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=920</guid>
		<description><![CDATA[This example shows how Excel and VBA can interact with each other. VBA will be used to generate function values over a given range. The answers will then be stored within an Excel workbook and used to produce a graph. This could be done entirely with Excel without the use of VBA. But if the [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/09/30/interacting-between-vba-and-excel-%e2%80%93-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBA Function: Populating a Range</title>
		<link>http://www.automateexcel.com/2008/09/26/vba-function-populating-a-range/</link>
		<comments>http://www.automateexcel.com/2008/09/26/vba-function-populating-a-range/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 11:06:58 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[Cells, Columns & Rows]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[populating]]></category>
		<category><![CDATA[range]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=918</guid>
		<description><![CDATA[The following code will populate a given range with a random number between 0 and 1000: Sub Randomise_Range(Cell_Range As Range) ' Will randomise each cell in Range Dim Cell 'Turn off screen alerts Application.ScreenUpdating = False For Each Cell In Cell_Range Cell.Value = Rnd * 1000 Next Cell Application.ScreenUpdating = True End Sub The code [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/09/26/vba-function-populating-a-range/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

