<?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: Formatting Footers in VBA</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2005/01/06/formatting-footers-in-vba/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2005/01/06/formatting-footers-in-vba/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Wed, 08 Feb 2012 12:03:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Michael</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/01/06/formatting-footers-in-vba/#comment-32250</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Fri, 09 May 2008 17:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=964#comment-32250</guid>
		<description>&lt;p&gt;Hi Jaime -&lt;/p&gt;
&lt;p&gt;It&#039;s quite doable.  In Dick&#039;s code, replace the line&lt;/p&gt;
&lt;p&gt;Const sDATE As String = &quot;&amp;D&quot;&lt;/p&gt;
&lt;p&gt;With&lt;/p&gt;
&lt;p&gt;Dim sDATE As String = Format(Date, &quot;ddmmmyy&quot;)&lt;/p&gt;
&lt;p&gt;...Michael&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Jaime -</p>
<p>It&#8217;s quite doable.  In Dick&#8217;s code, replace the line</p>
<p>Const sDATE As String = &#8220;&amp;D&#8221;</p>
<p>With</p>
<p>Dim sDATE As String = Format(Date, &#8220;ddmmmyy&#8221;)</p>
<p>&#8230;Michael</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/01/06/formatting-footers-in-vba/#comment-32248</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Fri, 09 May 2008 15:06:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=964#comment-32248</guid>
		<description>&lt;p&gt;Steve:  You are able to get the contents of a cell in the footer.  Here is an example of some code to take the contects of cell(1,1) and putting it in the footer:&lt;/p&gt;
&lt;p&gt;Sub CreateFooters()&lt;br&gt;
    Sheet1.PageSetup.RightFooter = Sheet1.Cells(1, 1)&lt;br&gt;
End Sub&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Steve:  You are able to get the contents of a cell in the footer.  Here is an example of some code to take the contects of cell(1,1) and putting it in the footer:</p>
<p>Sub CreateFooters()<br />
    Sheet1.PageSetup.RightFooter = Sheet1.Cells(1, 1)<br />
End Sub</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/01/06/formatting-footers-in-vba/#comment-32222</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Thu, 08 May 2008 12:28:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=964#comment-32222</guid>
		<description>&lt;p&gt;Is it possible to get the content of a cell in the footer?&lt;br&gt;
Each sheet has a title. We would like to print this title in the footer.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Is it possible to get the content of a cell in the footer?<br />
Each sheet has a title. We would like to print this title in the footer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jamie</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/01/06/formatting-footers-in-vba/#comment-32003</link>
		<dc:creator>Jamie</dc:creator>
		<pubDate>Wed, 23 Apr 2008 22:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=964#comment-32003</guid>
		<description>&lt;p&gt;First of all I&#039;m not at all knowledgable about VBA code other than what I found on the internet today so please forgive me if I&#039;m not explaining my question very well.  I would like to format the date in the footer.  If I write the following command &amp;[Date] I get a date in the following format 4/23/2008.  I would like the date to appear like this instead - 23APR08.  Is this possible?  Or am I asking too much?&lt;br&gt;
Thanks in advance.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>First of all I&#8217;m not at all knowledgable about VBA code other than what I found on the internet today so please forgive me if I&#8217;m not explaining my question very well.  I would like to format the date in the footer.  If I write the following command &amp;[Date] I get a date in the following format 4/23/2008.  I would like the date to appear like this instead &#8211; 23APR08.  Is this possible?  Or am I asking too much?<br />
Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sanjeev Kumar</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/01/06/formatting-footers-in-vba/#comment-31638</link>
		<dc:creator>Sanjeev Kumar</dc:creator>
		<pubDate>Wed, 02 Apr 2008 15:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=964#comment-31638</guid>
		<description>&lt;p&gt;How can I add a picture in the footer/header through Visual Basic?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>How can I add a picture in the footer/header through Visual Basic?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Unofficial Microsoft Office Stuff</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/01/06/formatting-footers-in-vba/#comment-10236</link>
		<dc:creator>Unofficial Microsoft Office Stuff</dc:creator>
		<pubDate>Tue, 05 Apr 2005 15:23:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=964#comment-10236</guid>
		<description>&lt;p&gt;&lt;strong&gt;Formatting Codes for Headers and Footers&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Excel Roll your own From Microsoft support: The following list contains the format codes that you can use in headers and footers.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p><strong>Formatting Codes for Headers and Footers</strong></p>
<p>Excel Roll your own From Microsoft support: The following list contains the format codes that you can use in headers and footers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dick</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/01/06/formatting-footers-in-vba/#comment-5161</link>
		<dc:creator>Dick</dc:creator>
		<pubDate>Mon, 10 Jan 2005 02:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=964#comment-5161</guid>
		<description>&lt;p&gt;You gave the answer before I read the question:) Cool, though, thanks for the pointing this out.  I&#039;ve never run into it before, but I can&#039;t imagine how I would have debugged it if I did.  That seems like a tricky one.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>You gave the answer before I read the question:) Cool, though, thanks for the pointing this out.  I&#8217;ve never run into it before, but I can&#8217;t imagine how I would have debugged it if I did.  That seems like a tricky one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephen Bullen</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/01/06/formatting-footers-in-vba/#comment-5160</link>
		<dc:creator>Stephen Bullen</dc:creator>
		<pubDate>Sun, 09 Jan 2005 22:26:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=964#comment-5160</guid>
		<description>&lt;p&gt;If sFooter starts with a number, Excel thinks it&#039;s part of the font size formatting, so you end up with a missing number and the rest of the footer in a very large font!  The solution, of course, is to include  space after the &amp;10:&lt;/p&gt;
&lt;p&gt;ActiveSheet.PageSetup.LeftFooter = &quot;&amp;10 ? &amp; sFooter&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>If sFooter starts with a number, Excel thinks it&#8217;s part of the font size formatting, so you end up with a missing number and the rest of the footer in a very large font!  The solution, of course, is to include  space after the &amp;10:</p>
<p>ActiveSheet.PageSetup.LeftFooter = &#8220;&amp;10 ? &amp; sFooter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephen Bullen</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/01/06/formatting-footers-in-vba/#comment-4984</link>
		<dc:creator>Stephen Bullen</dc:creator>
		<pubDate>Fri, 07 Jan 2005 21:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=964#comment-4984</guid>
		<description>&lt;p&gt;Be careful, though. Spot the bug in the following, which sets a 10pt footer:&lt;/p&gt;
&lt;p&gt;Public Sub SetLeftFooter(ByVal sFooter As String)&lt;/p&gt;
&lt;p&gt;ActiveSheet.PageSetup.LeftFooter = &quot;&amp;10? &amp; sFooter&lt;/p&gt;
&lt;p&gt;End Sub&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Be careful, though. Spot the bug in the following, which sets a 10pt footer:</p>
<p>Public Sub SetLeftFooter(ByVal sFooter As String)</p>
<p>ActiveSheet.PageSetup.LeftFooter = &#8220;&amp;10? &amp; sFooter</p>
<p>End Sub</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/01/06/formatting-footers-in-vba/#comment-4954</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Fri, 07 Jan 2005 12:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=964#comment-4954</guid>
		<description>&lt;p&gt;There are a few other codes for alignment, formatting etc., and a full list on the &quot;Formatting codes for Headers and Footers&quot; Help page.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>There are a few other codes for alignment, formatting etc., and a full list on the &#8220;Formatting codes for Headers and Footers&#8221; Help page.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

