<?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</title>
	<atom:link href="http://www.excelassist.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.excelassist.co.uk</link>
	<description>Excel hints, Excel tips and Excel assistance</description>
	<lastBuildDate>Fri, 26 Feb 2010 10:27:01 +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>Microsoft Excel Date Tips</title>
		<link>http://www.excelassist.co.uk/2010/microsoft-excel-date-tips/</link>
		<comments>http://www.excelassist.co.uk/2010/microsoft-excel-date-tips/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 10:27:01 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[hints]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[dates]]></category>
		<category><![CDATA[format date]]></category>

		<guid isPermaLink="false">http://www.excelassist.co.uk/?p=196</guid>
		<description><![CDATA[Show Day Names With Your Dates (XL2000-XL2007)
If you ever need to show the name of the day in addition to the dates (e.g. Saturday, July 10) here are a couple of options.
Option 1: You can create a custom number format for the cells containing the dates
1) Press CTRL+1;
2) Select the Custom category;
3) In the Type [...]]]></description>
		<wfw:commentRss>http://www.excelassist.co.uk/2010/microsoft-excel-date-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding the Excel Camera Tool to the Quick Access Toolbar &#8211; For Dummies</title>
		<link>http://www.excelassist.co.uk/2010/adding-the-excel-camera-tool-to-the-quick-access-toolbar-for-dummies/</link>
		<comments>http://www.excelassist.co.uk/2010/adding-the-excel-camera-tool-to-the-quick-access-toolbar-for-dummies/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 09:44:49 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[camera]]></category>

		<guid isPermaLink="false">http://www.excelassist.co.uk/?p=192</guid>
		<description><![CDATA[The Excel Camera tool enables you to take a live picture of a range of cells that updates dynamically while the data in that range updates. Although Microsoft doesnt include the Excel Camera tool in the mainstream Ribbon, its quite useful when you want to build Excel dashboards and reports. Before you can use the [...]]]></description>
		<wfw:commentRss>http://www.excelassist.co.uk/2010/adding-the-excel-camera-tool-to-the-quick-access-toolbar-for-dummies/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>excel 2003 menu in 2007</title>
		<link>http://www.excelassist.co.uk/2010/excel-2003-menu-in-2007/</link>
		<comments>http://www.excelassist.co.uk/2010/excel-2003-menu-in-2007/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 14:10:54 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Excel]]></category>

		<guid isPermaLink="false">http://www.excelassist.co.uk/?p=183</guid>
		<description><![CDATA[I found this tip today. If you&#8217;re not getting on with the ribbon and need the old menus you are used to. Here is some code to add those menus.
http://spreadsheetpage.com/index.php/site/tip/old_style_menus_in_excel_2007/
Sub MakeOldMenus()
   Dim cb As CommandBar
   Dim cbc As CommandBarControl
   Dim OldMenu As CommandBar
'  Delete it, if it exists
 [...]]]></description>
		<wfw:commentRss>http://www.excelassist.co.uk/2010/excel-2003-menu-in-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sort by cell colour</title>
		<link>http://www.excelassist.co.uk/2010/sort-by-cell-colour/</link>
		<comments>http://www.excelassist.co.uk/2010/sort-by-cell-colour/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 13:56:45 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[data]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[hints]]></category>

		<guid isPermaLink="false">http://www.excelassist.co.uk/?p=177</guid>
		<description><![CDATA[Excel 2007 can sort and filter using the cell color (colour). By using a UDF you can do this in earlier version as well.  VBA can get the interior color of the cell and report it as an index number from 1 to 56. Add this code into the VBA editor and add a [...]]]></description>
		<wfw:commentRss>http://www.excelassist.co.uk/2010/sort-by-cell-colour/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
