<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Workbook Exists</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2004/05/14/workbook-exists/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2004/05/14/workbook-exists/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Wed, 08 Feb 2012 23:58:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Jake Marx</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/05/14/workbook-exists/#comment-1512</link>
		<dc:creator>Jake Marx</dc:creator>
		<pubDate>Fri, 14 May 2004 23:44:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=546#comment-1512</guid>
		<description>&lt;p&gt;Or faster yet:&lt;/p&gt;
&lt;pre&gt;Function WorkbookExists(sWbName As String) As Boolean
    On Error Resume Next
        WorkbookExists = Not Workbooks(sWbName) Is Nothing
    On Error GoTo 0
End Function
&lt;/pre&gt;
</description>
		<content:encoded><![CDATA[<p>Or faster yet:</p>
<pre>Function WorkbookExists(sWbName As String) As Boolean
    On Error Resume Next
        WorkbookExists = Not Workbooks(sWbName) Is Nothing
    On Error GoTo 0
End Function
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake Marx</title>
		<link>http://www.dailydoseofexcel.com/archives/2004/05/14/workbook-exists/#comment-1511</link>
		<dc:creator>Jake Marx</dc:creator>
		<pubDate>Fri, 14 May 2004 23:39:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=546#comment-1511</guid>
		<description>&lt;p&gt;Dick,&lt;/p&gt;
&lt;p&gt;Although this is less readable, it&#039;s faster and a bit shorter:&lt;/p&gt;
&lt;pre&gt;Function WorkbookExists(sWbName As String) As Boolean
    On Error Resume Next
        WorkbookExists = Len(Workbooks(sWbName).Name)
    On Error GoTo 0
End Function
&lt;/pre&gt;
</description>
		<content:encoded><![CDATA[<p>Dick,</p>
<p>Although this is less readable, it&#8217;s faster and a bit shorter:</p>
<pre>Function WorkbookExists(sWbName As String) As Boolean
    On Error Resume Next
        WorkbookExists = Len(Workbooks(sWbName).Name)
    On Error GoTo 0
End Function
</pre>
]]></content:encoded>
	</item>
</channel>
</rss>

