<?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: Freezing Column or Row Headers</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2005/02/01/freezing-column-or-row-headers/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2005/02/01/freezing-column-or-row-headers/</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: Corrine</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/02/01/freezing-column-or-row-headers/#comment-36131</link>
		<dc:creator>Corrine</dc:creator>
		<pubDate>Tue, 18 Nov 2008 18:12:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1002#comment-36131</guid>
		<description>&lt;p&gt;Is there any way to freeze alternating columns? My columns are in a certain order that I need to keep them in, but only certain columns need to be viewed.  Ctl doesn&#039;t work with the freezing of panes?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Is there any way to freeze alternating columns? My columns are in a certain order that I need to keep them in, but only certain columns need to be viewed.  Ctl doesn&#8217;t work with the freezing of panes?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dick Kusleika</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/02/01/freezing-column-or-row-headers/#comment-19754</link>
		<dc:creator>Dick Kusleika</dc:creator>
		<pubDate>Tue, 23 May 2006 21:06:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1002#comment-19754</guid>
		<description>&lt;p&gt;Much better Doug.  I started out with Panes(1) because I new I could rely on it.  Only later did I add the If function, but didn&#039;t think to simplify the original code.  Good work.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Much better Doug.  I started out with Panes(1) because I new I could rely on it.  Only later did I add the If function, but didn&#8217;t think to simplify the original code.  Good work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug Glancy</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/02/01/freezing-column-or-row-headers/#comment-19753</link>
		<dc:creator>Doug Glancy</dc:creator>
		<pubDate>Tue, 23 May 2006 20:49:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1002#comment-19753</guid>
		<description>&lt;p&gt;Very nice, Dick!  Another hitherto undiscovered (by me) part of the Excel object model revealed.&lt;/p&gt;
&lt;p&gt;This shorter code seems to do the same thing.  What do you think?&lt;/p&gt;
&lt;p&gt;Function GetFrozenInt(wn As Window) As Range&lt;/p&gt;
&lt;p&gt;    If wn.Panes.Count = 4 Then&lt;br&gt;
        With wn.Panes(4)&lt;br&gt;
            Set GetFrozenInt = .VisibleRange(1)&lt;br&gt;
        End With&lt;br&gt;
    End If&lt;/p&gt;
&lt;p&gt;End Function&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Very nice, Dick!  Another hitherto undiscovered (by me) part of the Excel object model revealed.</p>
<p>This shorter code seems to do the same thing.  What do you think?</p>
<p>Function GetFrozenInt(wn As Window) As Range</p>
<p>    If wn.Panes.Count = 4 Then<br />
        With wn.Panes(4)<br />
            Set GetFrozenInt = .VisibleRange(1)<br />
        End With<br />
    End If</p>
<p>End Function</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dick Kusleika</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/02/01/freezing-column-or-row-headers/#comment-19752</link>
		<dc:creator>Dick Kusleika</dc:creator>
		<pubDate>Tue, 23 May 2006 20:28:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1002#comment-19752</guid>
		<description>&lt;p&gt;How about&lt;/p&gt;
&lt;div style=&quot;overflow: auto; white-space: nowrap;&quot; class=&quot;codecolorer-container text default&quot;&gt;&lt;div style=&quot;white-space: nowrap;&quot; class=&quot;text codecolorer&quot;&gt;Function GetFrozenInt(wn As Window) As Range&lt;br&gt;
&#160; &#160; &nbsp;&lt;br&gt;
&nbsp;&nbsp;&nbsp;&nbsp;If wn.Panes.Count = 4 Then&lt;br&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;With wn.Panes(1)&lt;br&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set GetFrozenInt = _&lt;br&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .VisibleRange(.VisibleRange.Cells.Count).Offset(1, 1)&lt;br&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;End With&lt;br&gt;
&nbsp;&nbsp;&nbsp;&nbsp;End If&lt;br&gt;
&nbsp; &#160; &#160;&lt;br&gt;
End Function&lt;/div&gt;&lt;/div&gt;
</description>
		<content:encoded><![CDATA[<p>How about</p>
<div style="overflow: auto; white-space: nowrap;" class="codecolorer-container text default">
<div style="white-space: nowrap;" class="text codecolorer">Function GetFrozenInt(wn As Window) As Range<br />
&nbsp; &nbsp; &amp;nbsp;<br />
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;If wn.Panes.Count = 4 Then<br />
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;With wn.Panes(1)<br />
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Set GetFrozenInt = _<br />
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .VisibleRange(.VisibleRange.Cells.Count).Offset(1, 1)<br />
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;End With<br />
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;End If<br />
&amp;nbsp; &nbsp; &nbsp;<br />
End Function</div>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/02/01/freezing-column-or-row-headers/#comment-19747</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Tue, 23 May 2006 17:55:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1002#comment-19747</guid>
		<description>&lt;p&gt;Anyone know how to find out which cell is at the intersection of the frozen rows and columns? It seems to be a write only property.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Anyone know how to find out which cell is at the intersection of the frozen rows and columns? It seems to be a write only property.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex J</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/02/01/freezing-column-or-row-headers/#comment-6678</link>
		<dc:creator>Alex J</dc:creator>
		<pubDate>Wed, 02 Feb 2005 17:37:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1002#comment-6678</guid>
		<description>&lt;p&gt;Thanks for the feedback, everybody.&lt;br&gt;
(Dick - sorry, I didn&#039;t realize you had listed your software under &quot;About this Blog&quot;.&lt;/p&gt;
&lt;p&gt;I think I&#039;m getting addicted to my &quot;Daily Dose&quot;. Keep up the good work.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks for the feedback, everybody.<br />
(Dick &#8211; sorry, I didn&#8217;t realize you had listed your software under &#8220;About this Blog&#8221;.</p>
<p>I think I&#8217;m getting addicted to my &#8220;Daily Dose&#8221;. Keep up the good work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Morin</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/02/01/freezing-column-or-row-headers/#comment-6674</link>
		<dc:creator>Jason Morin</dc:creator>
		<pubDate>Wed, 02 Feb 2005 16:19:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1002#comment-6674</guid>
		<description>&lt;p&gt;Someone directed me one time to some freeware called ZapGrab and I&#039;ve used it ever since. The quality of the screen shots are pretty good, even with jpg files. Best of all, it&#039;s extremely easy to use. Here&#039;s the link:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.lysator.liu.se/~zap/zapgrab.html&quot; rel=&quot;nofollow&quot;&gt;http://www.lysator.liu.se/~zap/zapgrab.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Jason&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Someone directed me one time to some freeware called ZapGrab and I&#8217;ve used it ever since. The quality of the screen shots are pretty good, even with jpg files. Best of all, it&#8217;s extremely easy to use. Here&#8217;s the link:</p>
<p><a href="http://www.lysator.liu.se/~zap/zapgrab.html" rel="nofollow">http://www.lysator.liu.se/~zap/zapgrab.html</a></p>
<p>Jason</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/02/01/freezing-column-or-row-headers/#comment-6672</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Wed, 02 Feb 2005 14:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1002#comment-6672</guid>
		<description>&lt;p&gt;I use SnagIt, too. Not free, but pretty cheap, and it is so versatile. I use it for some of my web site graphics, but mostly for documentation of my projects for my clients. It has COM add-in hooks for Office apps, so if you&#039;re working in an app like Word or PowerPoint, you click the button, the app minimizes and you select what you want captured, and it&#039;s inserted where you were in the original app&#039;s document.&lt;/p&gt;
&lt;p&gt;I used to use a lightweight bit of freeware called ScreenSeize, which also was worth the price. (Lots of free stuff isn&#039;t.)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I use SnagIt, too. Not free, but pretty cheap, and it is so versatile. I use it for some of my web site graphics, but mostly for documentation of my projects for my clients. It has COM add-in hooks for Office apps, so if you&#8217;re working in an app like Word or PowerPoint, you click the button, the app minimizes and you select what you want captured, and it&#8217;s inserted where you were in the original app&#8217;s document.</p>
<p>I used to use a lightweight bit of freeware called ScreenSeize, which also was worth the price. (Lots of free stuff isn&#8217;t.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aurelio</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/02/01/freezing-column-or-row-headers/#comment-6666</link>
		<dc:creator>aurelio</dc:creator>
		<pubDate>Wed, 02 Feb 2005 12:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1002#comment-6666</guid>
		<description>&lt;p&gt;I use MWSnap, a little and nice software (no installation needed), available for free at &lt;a href=&quot;http://www.mirekw.com/&quot; rel=&quot;nofollow&quot;&gt;http://www.mirekw.com/&lt;/a&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I use MWSnap, a little and nice software (no installation needed), available for free at <a href="http://www.mirekw.com/" rel="nofollow">http://www.mirekw.com/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jkpieterse</title>
		<link>http://www.dailydoseofexcel.com/archives/2005/02/01/freezing-column-or-row-headers/#comment-6661</link>
		<dc:creator>jkpieterse</dc:creator>
		<pubDate>Wed, 02 Feb 2005 06:55:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1002#comment-6661</guid>
		<description>&lt;p&gt;I too use Snagit, excellent screen capture program. Does &quot;video&quot; too.&lt;/p&gt;
&lt;p&gt;To get good results on a web page, use the GIF format.&lt;br&gt;
For printing jpg is fine too, but you need to check the quality setting that is used for creating the jpg format.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I too use Snagit, excellent screen capture program. Does &#8220;video&#8221; too.</p>
<p>To get good results on a web page, use the GIF format.<br />
For printing jpg is fine too, but you need to check the quality setting that is used for creating the jpg format.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

