<?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: Control Arrow</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2006/10/04/control-arrow/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2006/10/04/control-arrow/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Thu, 09 Feb 2012 18:06:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Gadgeteer</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/10/04/control-arrow/#comment-34811</link>
		<dc:creator>Gadgeteer</dc:creator>
		<pubDate>Wed, 17 Sep 2008 11:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1520#comment-34811</guid>
		<description>&lt;p&gt;shortcut for double clicking the crosshairs in the bottom right corner of the activecell&lt;/p&gt;
&lt;p&gt;this could be the equivalent of Edit &gt; Fill &gt; Down&lt;/p&gt;
&lt;p&gt;in which case the shortcut is Ctrl + D&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>shortcut for double clicking the crosshairs in the bottom right corner of the activecell</p>
<p>this could be the equivalent of Edit &gt; Fill &gt; Down</p>
<p>in which case the shortcut is Ctrl + D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jan</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/10/04/control-arrow/#comment-21465</link>
		<dc:creator>Jan</dc:creator>
		<pubDate>Fri, 03 Nov 2006 17:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1520#comment-21465</guid>
		<description>&lt;p&gt;You can always use the Alt DGH etc.&lt;br&gt;
They work a dream for me although I am hoping I will not have to re learn them when I get to 2007.&lt;br&gt;
Other favourites are Alt TUD and Alt TUP and Alt TUA.&lt;br&gt;
They are all in the menus but you get used to them pretty quick and you don&#039;t even notice what you are pressing.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>You can always use the Alt DGH etc.<br />
They work a dream for me although I am hoping I will not have to re learn them when I get to 2007.<br />
Other favourites are Alt TUD and Alt TUP and Alt TUA.<br />
They are all in the menus but you get used to them pretty quick and you don&#8217;t even notice what you are pressing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zach</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/10/04/control-arrow/#comment-21462</link>
		<dc:creator>Zach</dc:creator>
		<pubDate>Thu, 02 Nov 2006 17:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1520#comment-21462</guid>
		<description>&lt;p&gt;Speaking of shortcuts, does anyone have custom shortcuts for those commands that you can&#039;t otherwise do wtih the keyboard?  For example, here&#039;s two modules to allow you to expand and contract an outline one level at a time, similar to clicking on the little number boxes on the upper left hand side.  I know you can use Data-&gt;Group and Outline-&gt;Hide Detail / Show Detail for any selection, but there&#039;s no keyboard way to do it for the entire level without VBA.&lt;/p&gt;
&lt;div style=&quot;overflow: auto; white-space: nowrap;&quot; class=&quot;codecolorer-container vb default&quot;&gt;&lt;div style=&quot;white-space: nowrap;&quot; class=&quot;vb codecolorer&quot;&gt;&lt;span class=&quot;kw1&quot;&gt;Sub&lt;/span&gt; ExpandOutline()&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;Dim&lt;/span&gt; intMax &lt;span class=&quot;kw1&quot;&gt;As&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Integer&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;Dim&lt;/span&gt; lngRows &lt;span class=&quot;kw1&quot;&gt;As&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Long&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;Dim&lt;/span&gt; lngCount &lt;span class=&quot;kw1&quot;&gt;As&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Long&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
lngRows = ActiveSheet.UsedRange.Cells(ActiveSheet.UsedRange.Cells.Count).Row&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;For&lt;/span&gt; lngCount = 1 &lt;span class=&quot;kw1&quot;&gt;To&lt;/span&gt; lngRows&lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;If&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Not&lt;/span&gt; Rows(lngCount).Hidden &lt;span class=&quot;kw1&quot;&gt;Then&lt;/span&gt;&lt;br&gt;
&#160; &#160; &#160; &#160; &lt;span class=&quot;kw1&quot;&gt;If&lt;/span&gt; Rows(lngCount).OutlineLevel GREATERTHAN intMax &lt;span class=&quot;kw1&quot;&gt;Then&lt;/span&gt; intMax = Rows(lngCount).OutlineLevel&lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;End&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;If&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;Next&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;On&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Error&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Resume&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Next&lt;/span&gt;&lt;br&gt;
ActiveSheet.Outline.ShowLevels (intMax + 1)&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;End&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Sub&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;Sub&lt;/span&gt; ContractOutline()&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;Dim&lt;/span&gt; intMax &lt;span class=&quot;kw1&quot;&gt;As&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Integer&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;Dim&lt;/span&gt; lngRows &lt;span class=&quot;kw1&quot;&gt;As&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Long&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;Dim&lt;/span&gt; lngCount &lt;span class=&quot;kw1&quot;&gt;As&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Long&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
lngRows = ActiveSheet.UsedRange.Cells(ActiveSheet.UsedRange.Cells.Count).Row&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;For&lt;/span&gt; lngCount = 1 &lt;span class=&quot;kw1&quot;&gt;To&lt;/span&gt; lngRows&lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;If&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Not&lt;/span&gt; Rows(lngCount).Hidden &lt;span class=&quot;kw1&quot;&gt;Then&lt;/span&gt;&lt;br&gt;
&#160; &#160; &#160; &#160; &lt;span class=&quot;kw1&quot;&gt;If&lt;/span&gt; Rows(lngCount).OutlineLevel GREATERTHAN intMax &lt;span class=&quot;kw1&quot;&gt;Then&lt;/span&gt; intMax = Rows(lngCount).OutlineLevel&lt;br&gt;
&#160; &#160; &lt;span class=&quot;kw1&quot;&gt;End&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;If&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;Next&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;On&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Error&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Resume&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Next&lt;/span&gt;&lt;br&gt;
ActiveSheet.Outline.ShowLevels (intMax - 1)&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;kw1&quot;&gt;End&lt;/span&gt; &lt;span class=&quot;kw1&quot;&gt;Sub&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;You&#039;ll have to replace GREATERTHAN with a &gt; sign.&lt;/p&gt;
&lt;p&gt;I&#039;d also love a way to duplicate the autofill function you get when you doubleclick the crosshairs in the bottom right corner of the activecell.  I know you can do it with a sequence of keystrokes, but I&#039;d like an elegant way to do it with one command.  I&#039;m sure there&#039;s others that us keyboard loving mouse haters would like to see.  Moving my thumb to the touch pad just below the space bar is just too much work.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Speaking of shortcuts, does anyone have custom shortcuts for those commands that you can&#8217;t otherwise do wtih the keyboard?  For example, here&#8217;s two modules to allow you to expand and contract an outline one level at a time, similar to clicking on the little number boxes on the upper left hand side.  I know you can use Data-&gt;Group and Outline-&gt;Hide Detail / Show Detail for any selection, but there&#8217;s no keyboard way to do it for the entire level without VBA.</p>
<div style="overflow: auto; white-space: nowrap;" class="codecolorer-container vb default">
<div style="white-space: nowrap;" class="vb codecolorer"><span class="kw1">Sub</span> ExpandOutline()<br />
<span class="kw1">Dim</span> intMax <span class="kw1">As</span> <span class="kw1">Integer</span><br />
<span class="kw1">Dim</span> lngRows <span class="kw1">As</span> <span class="kw1">Long</span><br />
<span class="kw1">Dim</span> lngCount <span class="kw1">As</span> <span class="kw1">Long</span></p>
<p>lngRows = ActiveSheet.UsedRange.Cells(ActiveSheet.UsedRange.Cells.Count).Row</p>
<p><span class="kw1">For</span> lngCount = 1 <span class="kw1">To</span> lngRows<br />
&nbsp; &nbsp; <span class="kw1">If</span> <span class="kw1">Not</span> Rows(lngCount).Hidden <span class="kw1">Then</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">If</span> Rows(lngCount).OutlineLevel GREATERTHAN intMax <span class="kw1">Then</span> intMax = Rows(lngCount).OutlineLevel<br />
&nbsp; &nbsp; <span class="kw1">End</span> <span class="kw1">If</span><br />
<span class="kw1">Next</span></p>
<p><span class="kw1">On</span> <span class="kw1">Error</span> <span class="kw1">Resume</span> <span class="kw1">Next</span><br />
ActiveSheet.Outline.ShowLevels (intMax + 1)</p>
<p><span class="kw1">End</span> <span class="kw1">Sub</span></p>
<p><span class="kw1">Sub</span> ContractOutline()<br />
<span class="kw1">Dim</span> intMax <span class="kw1">As</span> <span class="kw1">Integer</span><br />
<span class="kw1">Dim</span> lngRows <span class="kw1">As</span> <span class="kw1">Long</span><br />
<span class="kw1">Dim</span> lngCount <span class="kw1">As</span> <span class="kw1">Long</span></p>
<p>lngRows = ActiveSheet.UsedRange.Cells(ActiveSheet.UsedRange.Cells.Count).Row</p>
<p><span class="kw1">For</span> lngCount = 1 <span class="kw1">To</span> lngRows<br />
&nbsp; &nbsp; <span class="kw1">If</span> <span class="kw1">Not</span> Rows(lngCount).Hidden <span class="kw1">Then</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">If</span> Rows(lngCount).OutlineLevel GREATERTHAN intMax <span class="kw1">Then</span> intMax = Rows(lngCount).OutlineLevel<br />
&nbsp; &nbsp; <span class="kw1">End</span> <span class="kw1">If</span><br />
<span class="kw1">Next</span></p>
<p><span class="kw1">On</span> <span class="kw1">Error</span> <span class="kw1">Resume</span> <span class="kw1">Next</span><br />
ActiveSheet.Outline.ShowLevels (intMax &#8211; 1)</p>
<p><span class="kw1">End</span> <span class="kw1">Sub</span></div>
</div>
<p>You&#8217;ll have to replace GREATERTHAN with a &gt; sign.</p>
<p>I&#8217;d also love a way to duplicate the autofill function you get when you doubleclick the crosshairs in the bottom right corner of the activecell.  I know you can do it with a sequence of keystrokes, but I&#8217;d like an elegant way to do it with one command.  I&#8217;m sure there&#8217;s others that us keyboard loving mouse haters would like to see.  Moving my thumb to the touch pad just below the space bar is just too much work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Toby Erkson</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/10/04/control-arrow/#comment-21237</link>
		<dc:creator>Toby Erkson</dc:creator>
		<pubDate>Wed, 11 Oct 2006 22:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1520#comment-21237</guid>
		<description>&lt;p&gt;Re: Scroll wheel in VBA&lt;br&gt;
I installed the beta version of Excel 2007 but had to remove it because of Q/A testing on the box I&#039;m using, so I&#039;m back to using Excel 2003 on Windows XP.  In the VBA editor I discovered my mouse scroll wheel worked!  So for those who have Excel 2007 installed, or who have installed it then uninstalled it, your scroll wheel should still work...at least in Excel 2003 :-)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Re: Scroll wheel in VBA<br />
I installed the beta version of Excel 2007 but had to remove it because of Q/A testing on the box I&#8217;m using, so I&#8217;m back to using Excel 2003 on Windows XP.  In the VBA editor I discovered my mouse scroll wheel worked!  So for those who have Excel 2007 installed, or who have installed it then uninstalled it, your scroll wheel should still work&#8230;at least in Excel 2003 <img src='http://www.dailydoseofexcel.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jan</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/10/04/control-arrow/#comment-21183</link>
		<dc:creator>Jan</dc:creator>
		<pubDate>Fri, 06 Oct 2006 14:09:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1520#comment-21183</guid>
		<description>&lt;p&gt;Ok it was 4 (Without excel I can&#039;t do mental arithmetic.)&lt;/p&gt;
&lt;p&gt;One more easy bunch to remember are the Ctrl shift 1 through 0&lt;br&gt;
Its easy to remember because you can see some hints on the keyboard.&lt;/p&gt;
&lt;p&gt;! = Basic number&lt;br&gt;
$ = money&lt;br&gt;
% = Percent&lt;br&gt;
^ = scientific&lt;br&gt;
&amp;= Wrap a border&lt;br&gt;
@ = Time&lt;br&gt;
# = Date&lt;br&gt;
~ = General&lt;br&gt;
1= show me my formatting options I screwed up the keyboard shortcuts....&lt;/p&gt;
&lt;p&gt;They are really handy for formatting.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Ok it was 4 (Without excel I can&#8217;t do mental arithmetic.)</p>
<p>One more easy bunch to remember are the Ctrl shift 1 through 0<br />
Its easy to remember because you can see some hints on the keyboard.</p>
<p>! = Basic number<br />
$ = money<br />
% = Percent<br />
^ = scientific<br />
&amp;= Wrap a border<br />
@ = Time<br />
# = Date<br />
~ = General<br />
1= show me my formatting options I screwed up the keyboard shortcuts&#8230;.</p>
<p>They are really handy for formatting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jan</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/10/04/control-arrow/#comment-21182</link>
		<dc:creator>Jan</dc:creator>
		<pubDate>Fri, 06 Oct 2006 13:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1520#comment-21182</guid>
		<description>&lt;p&gt;Two more you might like....&lt;/p&gt;
&lt;p&gt;Ctrl + F3 for a find using the current word (and then F3 repeatedly).  Great for those who hate the big stupid find / replace box.&lt;br&gt;
Shift + F2 for jumping to the declaration or Code module, the best for reviewing someones code.&lt;br&gt;
Ctrl + F3 is also a great way to define names in excel , but Ctrl + Shift + F3 is even better.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Two more you might like&#8230;.</p>
<p>Ctrl + F3 for a find using the current word (and then F3 repeatedly).  Great for those who hate the big stupid find / replace box.<br />
Shift + F2 for jumping to the declaration or Code module, the best for reviewing someones code.<br />
Ctrl + F3 is also a great way to define names in excel , but Ctrl + Shift + F3 is even better.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex J</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/10/04/control-arrow/#comment-21181</link>
		<dc:creator>Alex J</dc:creator>
		<pubDate>Fri, 06 Oct 2006 13:23:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1520#comment-21181</guid>
		<description>&lt;p&gt;(I know that we&#039;re really talking shortcuts, but...) I prefer, instead of Jan&#039;s Ctrl + Shift+ A while entering a formula, to select the equals sign in the formula bar - giving a template for entering the parameters as well as basic help descriptions. (Of course, both techniques work for custom functions as well as built-ins).&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>(I know that we&#8217;re really talking shortcuts, but&#8230;) I prefer, instead of Jan&#8217;s Ctrl + Shift+ A while entering a formula, to select the equals sign in the formula bar &#8211; giving a template for entering the parameters as well as basic help descriptions. (Of course, both techniques work for custom functions as well as built-ins).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jan</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/10/04/control-arrow/#comment-21179</link>
		<dc:creator>Jan</dc:creator>
		<pubDate>Fri, 06 Oct 2006 11:38:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1520#comment-21179</guid>
		<description>&lt;p&gt;What century are you guys living in ?&lt;br&gt;
Next thing you know you will be telling me that you can&#039;t use the mouse scroll wheel in vba.&lt;br&gt;
   (gasanov)&lt;/p&gt;
&lt;p&gt;Most of these shortcuts have been around since Windows 3.0&lt;/p&gt;
&lt;p&gt;My favourite Excel shortcut is Ctrl + Shift + A&lt;br&gt;
Try it type &quot;=PMT(&quot;&lt;br&gt;
Then before you think to yourself what were those parameters?&lt;br&gt;
 hit the Ctrl Shift A and all is revealed.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>What century are you guys living in ?<br />
Next thing you know you will be telling me that you can&#8217;t use the mouse scroll wheel in vba.<br />
   (gasanov)</p>
<p>Most of these shortcuts have been around since Windows 3.0</p>
<p>My favourite Excel shortcut is Ctrl + Shift + A<br />
Try it type &#8220;=PMT(&#8220;<br />
Then before you think to yourself what were those parameters?<br />
 hit the Ctrl Shift A and all is revealed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brett</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/10/04/control-arrow/#comment-21178</link>
		<dc:creator>Brett</dc:creator>
		<pubDate>Fri, 06 Oct 2006 01:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1520#comment-21178</guid>
		<description>&lt;p&gt;Juan Pablo,&lt;/p&gt;
&lt;p&gt;     Thank you!! Shift + F10 just became a new friend. I don&#039;t hate the mouse, but I sure begrudge the time spent moving away from the keyboard.&lt;/p&gt;
&lt;p&gt;Brett&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Juan Pablo,</p>
<p>     Thank you!! Shift + F10 just became a new friend. I don&#8217;t hate the mouse, but I sure begrudge the time spent moving away from the keyboard.</p>
<p>Brett</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juan Pablo Gonzalez</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/10/04/control-arrow/#comment-21177</link>
		<dc:creator>Juan Pablo Gonzalez</dc:creator>
		<pubDate>Thu, 05 Oct 2006 21:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1520#comment-21177</guid>
		<description>&lt;p&gt;&gt; I know that there&#039;s a key combination that shows the shortcut menu&lt;/p&gt;
&lt;p&gt;Shift + F10.  And I use that shortcut key all the time.  I have the MS Ergonomic 4000 and I use almost every key on it, probably the two that I never use are PrtScrn and ScrLk.  The rest get a fair amount of pushing.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>&gt; I know that there&#8217;s a key combination that shows the shortcut menu</p>
<p>Shift + F10.  And I use that shortcut key all the time.  I have the MS Ergonomic 4000 and I use almost every key on it, probably the two that I never use are PrtScrn and ScrLk.  The rest get a fair amount of pushing.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

