<?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 Assist .co.uk &#187; Macro</title>
	<atom:link href="http://www.excelassist.co.uk/category/macro/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.excelassist.co.uk</link>
	<description>Excel hints, Excel tips and Excel assistance</description>
	<lastBuildDate>Thu, 14 Apr 2011 20:33:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Function/Formula to Sum Excel Cells by Colour</title>
		<link>http://www.excelassist.co.uk/2010/function-to-sum-by-colour-excel/</link>
		<comments>http://www.excelassist.co.uk/2010/function-to-sum-by-colour-excel/#comments</comments>
		<pubDate>Fri, 26 Nov 2010 14:04:31 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[Macro]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[udf]]></category>

		<guid isPermaLink="false">http://www.excelassist.co.uk/?p=253</guid>
		<description><![CDATA[Function SumColor(rColor As Range, rSumRange As Range)
''''''''''''''''''''''''''''''''''''''
'Written by Ozgrid Business Applications
'www.ozgrid.com
'Sums cells based on a specified fill color.
'''''''''''''''''''''''''''''''''''''''
	Dim rCell As Range
	Dim iCol As Integer
	Dim vResult
	iCol = rColor.Interior.ColorIndex
		For Each rCell In rSumRange
			If rCell.Interior.ColorIndex = iCol Then
				vResult = WorksheetFunction.Sum(rCell) + vResult
			End If
		Next rCell
	SumColor = vResult
End Function
			
via 2 Excel Functions/Formulas to Count/Sum Excel Cells by Color &#8211; Excel [...]]]></description>
		<wfw:commentRss>http://www.excelassist.co.uk/2010/function-to-sum-by-colour-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel calculation on off button</title>
		<link>http://www.excelassist.co.uk/2010/excel-calculation-on-off-button/</link>
		<comments>http://www.excelassist.co.uk/2010/excel-calculation-on-off-button/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 15:40:17 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[Macro]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[vba]]></category>

		<guid isPermaLink="false">http://www.excelassist.co.uk/?p=187</guid>
		<description><![CDATA[I decided I needed a button in my menu bar to turn calculations to manual or auto. As I am now using Excel 2007 the process to get to the Option dialogue is a little long winded.
So my code looks like this;

Sub CalcChangeStatus()
Cells(1, 1).Select
If Application.Calculation = xlManual Then
Application.Calculation = xlCalculationAutomatic
Else
Application.Calculation = xlManual
End If
End Sub

Add a [...]]]></description>
		<wfw:commentRss>http://www.excelassist.co.uk/2010/excel-calculation-on-off-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>directory list using Excel</title>
		<link>http://www.excelassist.co.uk/2009/directory-list-using-excel/</link>
		<comments>http://www.excelassist.co.uk/2009/directory-list-using-excel/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 19:12:01 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[Macro]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[vba]]></category>

		<guid isPermaLink="false">http://www.excelassist.co.uk/?p=145</guid>
		<description><![CDATA[This is excellent. I have been looking for a way to get a list of files in a directory into Excel so that I can determine which are new. The contents change over time.  I found this here
I put the following code from ask.metafilter.com into the module of my file (using Alt+F11). I can [...]]]></description>
		<wfw:commentRss>http://www.excelassist.co.uk/2009/directory-list-using-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Jump To a Specific Page in Excel</title>
		<link>http://www.excelassist.co.uk/2009/jump-to-a-specific-page/</link>
		<comments>http://www.excelassist.co.uk/2009/jump-to-a-specific-page/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 17:04:12 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[Macro]]></category>
		<category><![CDATA[reports]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[page selection]]></category>
		<category><![CDATA[vba]]></category>

		<guid isPermaLink="false">http://www.excelassist.co.uk/?p=129</guid>
		<description><![CDATA[This is a great tip from Allen Wyatt&#8217;s Excel Tips 
Suppose that you have a large worksheet that requires 16 pages when printed out. You may wonder if there is a way, when working within the worksheet, to jump to some given page, such as page 5.
Word users know that they can, within Word, use [...]]]></description>
		<wfw:commentRss>http://www.excelassist.co.uk/2009/jump-to-a-specific-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working with Macros</title>
		<link>http://www.excelassist.co.uk/2009/working-with-macros/</link>
		<comments>http://www.excelassist.co.uk/2009/working-with-macros/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 04:52:41 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Macro]]></category>
		<category><![CDATA[keyboard shortcuts]]></category>

		<guid isPermaLink="false">http://www.excelassist.co.uk/?p=124</guid>
		<description><![CDATA[Here are some keyboard shortcuts to help you work with macros
ALT+F8
Displays the Macro dialog box. 
ALT+F11
Displays the Visual Basic Editor. 
CTRL+F11
Inserts a Microsoft Excel 4.0 macro sheet.
]]></description>
		<wfw:commentRss>http://www.excelassist.co.uk/2009/working-with-macros/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

