<?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; workbook</title>
	<atom:link href="http://www.automateexcel.com/tag/workbook/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>Adding and Naming Sheets to Excel Workbook</title>
		<link>http://www.automateexcel.com/2008/10/28/adding-and-naming-sheets-to-excel-workbook/</link>
		<comments>http://www.automateexcel.com/2008/10/28/adding-and-naming-sheets-to-excel-workbook/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 20:44:44 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[VBA]]></category>
		<category><![CDATA[naming sheets]]></category>
		<category><![CDATA[workbook]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=1052</guid>
		<description><![CDATA[The following code works opening a workbook. It automatically adds a new sheet and labels it with the date. It also checks to see that the sheet doesn’t already exist – to allow for the possibility of it being opened more than once a day. This code makes use of the Workbook Open Event and [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/10/28/adding-and-naming-sheets-to-excel-workbook/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adding and Saving Workbooks</title>
		<link>http://www.automateexcel.com/2008/10/27/adding-and-saving-workbooks/</link>
		<comments>http://www.automateexcel.com/2008/10/27/adding-and-saving-workbooks/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 18:16:57 +0000</pubDate>
		<dc:creator>Kaps</dc:creator>
				<category><![CDATA[VBA]]></category>
		<category><![CDATA[workbook]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=1055</guid>
		<description><![CDATA[The following code will prompt the user for the name of a workbook. It will then create and save a new workbook with the same name. Private Sub CommandButton1_Click() Dim Workbook_Name As String Dim New_Workbook As Workbook Set New_Workbook = Nothing Workbook_Name = InputBox(Prompt:="Workbook Name.", Title:="Enter the WorkBook Name :") Set New_Workbook = Workbooks.Add With [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/10/27/adding-and-saving-workbooks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Create an In Cell Chart Using VBA</title>
		<link>http://www.automateexcel.com/2008/09/12/create-an-in-cell-chart-using-vba/</link>
		<comments>http://www.automateexcel.com/2008/09/12/create-an-in-cell-chart-using-vba/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 08:25:52 +0000</pubDate>
		<dc:creator>Steven</dc:creator>
				<category><![CDATA[Charts]]></category>
		<category><![CDATA[VBA]]></category>
		<category><![CDATA[cell]]></category>
		<category><![CDATA[chart]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[user]]></category>
		<category><![CDATA[user defined]]></category>
		<category><![CDATA[workbook]]></category>

		<guid isPermaLink="false">http://www.automateexcel.com/?p=864</guid>
		<description><![CDATA[The following tutorial will describe how to create a chart in a cell like the one displayed in the table above under the “Trend” column. The chart is created using a function called “CellChart”. You would enter it in Excel like any other standard function i.e. SUM, AVERAGE or VLOOKUP etc. This function is called [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2008/09/12/create-an-in-cell-chart-using-vba/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>VBA: Test if Workbook is Open, by Workbook Name</title>
		<link>http://www.automateexcel.com/2005/01/12/excel_vba_test_if_workbook_is_open_by_wo/</link>
		<comments>http://www.automateexcel.com/2005/01/12/excel_vba_test_if_workbook_is_open_by_wo/#comments</comments>
		<pubDate>Wed, 12 Jan 2005 00:18:34 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Worksheets]]></category>
		<category><![CDATA[workbook]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Here is some real basic code for testing if a workbook is currently open by testing for a workbook&#8217;s name, not the fully qualified name including the path. I was writing code in a spreadsheet that altered sheets in another workbook, and wanted to make sure workbook 2 was open before the code executed in [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2005/01/12/excel_vba_test_if_workbook_is_open_by_wo/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>VBA: Macro to Update all Worksheets in Workbook</title>
		<link>http://www.automateexcel.com/2004/08/14/excel_vba_macro_to_update_all_worksheets/</link>
		<comments>http://www.automateexcel.com/2004/08/14/excel_vba_macro_to_update_all_worksheets/#comments</comments>
		<pubDate>Sat, 14 Aug 2004 01:07:38 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[VBA]]></category>
		<category><![CDATA[macro]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[workbook]]></category>
		<category><![CDATA[worksheet]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Macro&#8217;s applied to an entire workbook can be handy for extracting data from multiple sheets to a new workbook, applying advanced formatting to all sheets, or many other reasons. Here is the basic syntax and a working code example for vba that works on every sheet in a workbook. The basic syntax for looping through [...]]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2004/08/14/excel_vba_macro_to_update_all_worksheets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBA: Count the sheets in a Workbook</title>
		<link>http://www.automateexcel.com/2004/08/14/excel_vba_count_the_sheets_in_a_workbook/</link>
		<comments>http://www.automateexcel.com/2004/08/14/excel_vba_count_the_sheets_in_a_workbook/#comments</comments>
		<pubDate>Sat, 14 Aug 2004 00:42:19 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Worksheets]]></category>
		<category><![CDATA[count]]></category>
		<category><![CDATA[VBA]]></category>
		<category><![CDATA[workbook]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[If you ever need to count the number of sheets in a workbook, use Application.Sheets.Count Put this in a module: Public Sub CountMySheets() MsgBox Application.Sheets.Count End Sub]]></description>
		<wfw:commentRss>http://www.automateexcel.com/2004/08/14/excel_vba_count_the_sheets_in_a_workbook/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

