<?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>Excel Zoom &#187; Shortcuts</title>
	<atom:link href="http://excelzoom.com/tag/shortcuts/feed/" rel="self" type="application/rss+xml" />
	<link>http://excelzoom.com</link>
	<description>...because it&#039;s more than just a calculator</description>
	<lastBuildDate>Wed, 02 Sep 2009 20:43:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to Recover Lost Excel Passwords</title>
		<link>http://excelzoom.com/2009/08/how-to-recover-lost-excel-passwords/</link>
		<comments>http://excelzoom.com/2009/08/how-to-recover-lost-excel-passwords/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 18:30:52 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Macros]]></category>
		<category><![CDATA[Automatic]]></category>
		<category><![CDATA[Password]]></category>
		<category><![CDATA[Shortcuts]]></category>

		<guid isPermaLink="false">http://excelzoom.com/?p=274</guid>
		<description><![CDATA[Let me preface this article by saying that this will not help you recover lost data, or gain access to protected data that you otherwise wouldn&#8217;t have access to.  What it will do is allow you to unlock a password protected worksheet in Excel, so that you can edit it as necessary.  Simply put, if [...]]]></description>
			<content:encoded><![CDATA[<p>Let me preface this article by saying that this will not help you recover lost data, or gain access to protected data that you otherwise wouldn&#8217;t have access to.  What it will do is allow you to unlock a password protected worksheet in Excel, so that you can edit it as necessary.  Simply put, if you don&#8217;t already have access to the worksheet, this macro will not help you.</p>
<p>Now that the disclaimer is out of the way, let&#8217;s figure out why people password protect worksheets to begin with.  By protecting a worksheet and the contents of locked cells, users can keep themselves or other users from:</p>
<ul>
<li>accidentally (or intentionally) removing formulas, or other contents of locked cells</li>
<li>adding or deleting rows and columns</li>
<li>changing cell, column or row formats</li>
<li>sorting data</li>
<li>using AutoFilter or PivotTable reports</li>
<li>editing objects or scenarios</li>
</ul>
<p>Protecting a worksheet will <strong><span style="text-decoration: underline;">not</span></strong> keep users from</p>
<ul>
<li>editing any unlocked cells in the worksheet</li>
<li>viewing all data in the worksheet, regardless of if it is in a locked cell or not</li>
</ul>
<p>Being able to unlock a password protected worksheet is useful, when</p>
<ul>
<li>you have forgotten the password on your own worksheet</li>
<li>a co-worker, or other user has password protected a worksheet that you now need to edit, and they are not available to unlock the sheet for you</li>
<li>you have a need to perform an analysis of the data in a password protected worksheet, but are unable to do so due to the locked cells</li>
<li>you would like to sort/filter the data in a password protected worksheet, or create a PivotTable report from the data</li>
</ul>
<p>Since Microsoft Excel is not a &#8220;secure&#8221; program, it is very easy to unlock the password of a password protected worksheet.  This is because there are several different combinations of passwords that Excel will accept to unlock the worksheet.  For example, a worksheet with the password &#8220;treehouse&#8221;, can also be unlocked with the password &#8220;AAAABAABBBB/&#8221;.  The opposite is also true (i.e. protecting with the password &#8220;AAAABAABBBB/&#8221; can be unlocked with the password &#8220;treehouse&#8221;).  Go ahead; try locking a worksheet with the password treehouse, and use AAAABAABBBB/ to unlock it.</p>
<p>The macro code below will &#8220;unlock&#8221; one worksheet at a time, using the method used above.  It won&#8217;t provide you with the actual password someone typed in, but rather a random sequence of letters or symbols that will work to unlock the worksheet.</p>
<p><code><br />
Sub PasswordRecovery()<br />
    '<br />
    'MACROS BY EXCELZOOM.COM<br />
    Dim i As Integer, j As Integer, k As Integer<br />
    Dim l As Integer, m As Integer, n As Integer<br />
    Dim i1 As Integer, i2 As Integer, i3 As Integer<br />
    Dim i4 As Integer, i5 As Integer, i6 As Integer<br />
    On Error Resume Next<br />
    For i = 65 To 66: For j = 65 To 66: For k = 65 To 66<br />
    For l = 65 To 66: For m = 65 To 66: For i1 = 65 To 66<br />
    For i2 = 65 To 66: For i3 = 65 To 66: For i4 = 65 To 66<br />
    For i5 = 65 To 66: For i6 = 65 To 66: For n = 32 To 126<br />
    ActiveSheet.Unprotect Chr(i) &#038; Chr(j) &#038; Chr(k) &#038; _<br />
        Chr(l) &#038; Chr(m) &#038; Chr(i1) &#038; Chr(i2) &#038; Chr(i3) &#038; _<br />
        Chr(i4) &#038; Chr(i5) &#038; Chr(i6) &#038; Chr(n)<br />
    If ActiveSheet.ProtectContents = False Then<br />
        MsgBox "One usable password is " &#038; Chr(i) &#038; Chr(j) &#038; _<br />
            Chr(k) &#038; Chr(l) &#038; Chr(m) &#038; Chr(i1) &#038; Chr(i2) &#038; _<br />
            Chr(i3) &#038; Chr(i4) &#038; Chr(i5) &#038; Chr(i6) &#038; Chr(n)<br />
         Exit Sub<br />
    End If<br />
    Next: Next: Next: Next: Next: Next<br />
    Next: Next: Next: Next: Next: Next<br />
End Sub<br />
</code></p>
<!-- Easy AdSense V2.61 -->
<!-- Post[count: 2] -->
<div class="ezAdsense adsense adsense-leadout" style="float:left;margin:12px;"><script type="text/javascript"><!--
google_ad_client = "pub-0662082843230645";
/* Excel Zoom Post Bottom468x60, created 5/31/09 */
google_ad_slot = "1891900730";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>]]></content:encoded>
			<wfw:commentRss>http://excelzoom.com/2009/08/how-to-recover-lost-excel-passwords/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Excel 2007</title>
		<link>http://excelzoom.com/2009/02/excel-2007/</link>
		<comments>http://excelzoom.com/2009/02/excel-2007/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 09:20:29 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Excel 2007]]></category>
		<category><![CDATA[Shortcuts]]></category>

		<guid isPermaLink="false">http://excelzoom.com/?p=83</guid>
		<description><![CDATA[For a person who has used previous versions of Excel, Excel 2007 can be a little intimidating at first. For starters, there are none of the familiar menu options, and some of the keyboard shortcuts that have become second nature have changed. Don&#8217;t let this discourage you though. With a little guidance and familiarization, you&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p>For a person who has used previous versions of Excel, Excel 2007 can be a little intimidating at first.  For starters, there are none of the familiar menu options, and some of the keyboard shortcuts that have become second nature have changed.  Don&#8217;t let this discourage you though.  With a little guidance and familiarization, you&#8217;ll find that Excel 2007 is more powerful and easier to use than before.</p>
<p><img src="http://excelzoom.com/excel/images/excel2007screenshot.jpg" alt="Excel 2007 Navigation" /></p>
<ol>
<li><strong>Office Button:</strong> This button contains most of the functions found in the File Menu from previous versions of Excel.  Commands, such as New, Open, Save, Print and others can be found here.</li>
<li><strong>Quick Access Toolbar:</strong> The Quick Access Toolbar is fully customizable, and allows you to display commonly used commands.  In the image above, there is Save, Undo, Redo, Print Preview and New Workbook.</li>
<li><strong>Ribbon:</strong> The Ribbon replaces the traditional menus found in previous versions of Excel.  The standard ribbon tabs are Home, Insert, Page Layout, Formulas, Data, Review, and View. Excel will automatically add menus as necessary to allow you to work with the content of your worksheet.  You&#8217;ll notice that there is also a Developer and an Add-Ins tab in the image above.  This is because there are macros stored in the workbook, which are shown in the Developer tab, as well as several Add-Ins that are running.</li>
<li><strong>Help:</strong> The Help button provides one click access to be able to browse Excel&#8217;s help topics.</li>
<li><strong>Name Box:</strong> The Name Box isn&#8217;t different from previous versions of Excel, however it is one of the lesser known features found in Excel.  This displays the cell reference when selecting a cell (the column and row cross section).  You can also type a named range in here.  To learn more about naming ranges, take a look at our article <a href="http://excelzoom.com/?p=77">Tips &#8211; Naming Ranges</a>.</li>
<li><strong>Insert Function:</strong> By clicking the Insert Function button, Excel will open the Insert Function dialogue box.  Here you can search for functions by typing keywords in the search box, or by selecting a category from the drop down menu.  The Insert Functions interface is the same as in previous versions of Excel.</li>
<li><strong>Formula Bar and Expand Formula Bar Button:</strong> The Formula Bar should look familiar to you if you have used Excel before.  What&#8217;s different in Excel 2007 is the Expand Formula Bar Button on the right.  When working with long formulas, this button increases the height of the formula bar, without covering over the data in the first few rows of your spreadsheet.  It also enables you to scroll vertically through the formula with the scrolling buttons it displays after clicking the Expand Formula Bar Button.</li>
<li><strong>Right Click MiniBar:</strong> When right clicking a cell in Excel 2007, you&#8217;ll see a new MiniBar in addition to the usual shortcut menu, which displays commonly used editing features.  This is makes editing easier, so you don&#8217;t have to keep clicking back to the Home tab on the Ribbon in order to format your worksheet.</li>
<li><strong>Right Click Shortcut Menu:</strong> The shortcut menu in Excel 2007 hasn&#8217;t changed much, but also displays with the MiniBar when right clicking.</li>
<li><strong>Vertical/Horizontal Split Box:</strong> The split boxes in Excel 2007 are not a new feature, but are not very well known.  By clicking and dragging either the vertical or horizontal bars, you can split your worksheet into several scrollable panes, allowing you to view different areas of your worksheet at once.  To learn more about the split box, take a look at our article <a href="http://excelzoom.com/?p=81">Tips &#8211; Split a Worksheet Into Multiple Panes</a>.</li>
<li><strong>Status Bar:</strong> The status bar shows information about Excel.  In the image above it says &#8220;Ready&#8221;, however if you&#8217;re saving a file, it will display the status there.  The AutoSave feature will also display a status in this location when it is saving your work.  The status bar also displays the selected cell statistics, quick views bar and zoom level.  The status bar is also customizable.  Simply right click somewhere in the status bar to display the customization menu.</li>
<li><strong>Worksheet Tabs and Insert New Worksheet Button:</strong> The worksheet tabs should be a familiar sight from previous versions of Excel, but the Insert New Worksheet button is a new addition.  You can now insert new worksheets with one click of the Insert New Worksheet button.</li>
<li><strong>Selected Cell Statistics:</strong> In previous versions of Excel, when highlighting several cells with numbers Excel would, by default, show the sum of those numbers here.  In Excel 2007, it also displays the average and count of those cells in addition to the sum.  For purposes of the illustration above, we&#8217;ve edited the image to display the selected cell statistics as if we were to highlight two cells, one with a 5 and the other with a 1.  We did this so we could also illustrate the right click menu, that would have otherwise obscured the data in the selected cells.</li>
<li><strong>Quick Views:</strong> The Quick Views bar allows you to quickly switch between Normal, Page Layout and Page Break Preview views.  While these page views aren&#8217;t new to Excel 2007, the easy access quick views bar is.</li>
<li><strong>Zoom Level:</strong> The Zoom Level bar replaces the zoom level drop down menu from previous versions of Excel.  You can change the zoom by dragging the arrow left or right to a minimum zoom of 10% or a maximum zoom of 400%.  Alternatively, you can click the + or &#8211; buttons to increase/decrease the zoom level by 10% with each click.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://excelzoom.com/2009/02/excel-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel Shortcut Keys</title>
		<link>http://excelzoom.com/2009/02/excel-shortcut-keys/</link>
		<comments>http://excelzoom.com/2009/02/excel-shortcut-keys/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 23:22:52 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Shortcuts]]></category>

		<guid isPermaLink="false">http://excelzoom.com/?p=61</guid>
		<description><![CDATA[Below, you&#8217;ll find a fairly comprehensive list of default shortcut keys found on a standard English keyboard in Excel. F1 Help Ctrl+F9 Minimize Workbook Ctrl+Up Arrow Move to Next Cell With Data Above F2 Edit Ctrl+F10 Restore Workbook Ctrl+Down Arrow Move to Next Cell With Data Below F4 Repeat Action Ctrl+F11 New Macro Sheet Ctrl+Space [...]]]></description>
			<content:encoded><![CDATA[<p><!--<br />
.style1 {<br />
color: windowtext;<br />
font-size: 10.0pt;<br />
font-weight: 700;<br />
font-style: normal;<br />
text-decoration: none;<br />
font-family: Arial, sans-serif;<br />
text-align: left;<br />
vertical-align: top;<br />
white-space: normal;<br />
border-style: none;<br />
border-color: inherit;<br />
border-width: medium;<br />
padding-left: 1px;<br />
padding-right: 1px;<br />
padding-top: 1px;<br />
}<br />
.style2 {<br />
color: windowtext;<br />
font-size: 10.0pt;<br />
font-weight: 400;<br />
font-style: normal;<br />
text-decoration: none;<br />
font-family: Arial, sans-serif;<br />
text-align: left;<br />
vertical-align: top;<br />
white-space: normal;<br />
border-style: none;<br />
border-color: inherit;<br />
border-width: medium;<br />
padding-left: 1px;<br />
padding-right: 1px;<br />
padding-top: 1px;<br />
}<br />
.style3 {<br />
color: windowtext;<br />
font-size: 10.0pt;<br />
font-weight: 400;<br />
font-style: normal;<br />
text-decoration: none;<br />
font-family: Arial, sans-serif;<br />
text-align: general;<br />
vertical-align: top;<br />
white-space: normal;<br />
border-style: none;<br />
border-color: inherit;<br />
border-width: medium;<br />
padding-left: 1px;<br />
padding-right: 1px;<br />
padding-top: 1px;<br />
}<br />
.style4 {<br />
font-size: 10.0pt;<br />
color: windowtext;<br />
font-weight: 700;<br />
text-decoration: none;<br />
font-family: Arial, sans-serif;<br />
font-style: normal;<br />
text-align: left;<br />
vertical-align: top;<br />
white-space: normal;<br />
border-style: none;<br />
border-color: inherit;<br />
border-width: medium;<br />
padding-left: 1px;<br />
padding-right: 1px;<br />
padding-top: 1px;<br />
background: silver;<br />
}<br />
.style5 {<br />
font-size: 10.0pt;<br />
color: windowtext;<br />
font-weight: 400;<br />
text-decoration: none;<br />
font-family: Arial, sans-serif;<br />
font-style: normal;<br />
text-align: left;<br />
vertical-align: top;<br />
white-space: normal;<br />
border-style: none;<br />
border-color: inherit;<br />
border-width: medium;<br />
padding-left: 1px;<br />
padding-right: 1px;<br />
padding-top: 1px;<br />
background: silver;<br />
}<br />
.style6 {<br />
font-size: 10.0pt;<br />
color: windowtext;<br />
font-weight: 400;<br />
text-decoration: none;<br />
font-family: Arial, sans-serif;<br />
font-style: normal;<br />
text-align: general;<br />
vertical-align: top;<br />
white-space: normal;<br />
border-style: none;<br />
border-color: inherit;<br />
border-width: medium;<br />
padding-left: 1px;<br />
padding-right: 1px;<br />
padding-top: 1px;<br />
background: silver;<br />
}<br />
.style7 {<br />
color: windowtext;<br />
font-size: 10.0pt;<br />
font-weight: 700;<br />
font-style: normal;<br />
text-decoration: none;<br />
font-family: Arial, sans-serif;<br />
text-align: general;<br />
vertical-align: top;<br />
white-space: normal;<br />
border-style: none;<br />
border-color: inherit;<br />
border-width: medium;<br />
padding-left: 1px;<br />
padding-right: 1px;<br />
padding-top: 1px;<br />
}<br />
.style8 {<br />
font-size: 10.0pt;<br />
color: windowtext;<br />
font-weight: 700;<br />
text-decoration: none;<br />
font-family: Arial, sans-serif;<br />
font-style: normal;<br />
text-align: general;<br />
vertical-align: top;<br />
white-space: normal;<br />
border-style: none;<br />
border-color: inherit;<br />
border-width: medium;<br />
padding-left: 1px;<br />
padding-right: 1px;<br />
padding-top: 1px;<br />
background: silver;<br />
}<br />
--><br />
Below, you&#8217;ll find a fairly comprehensive list of default shortcut keys found on a standard English keyboard in Excel.</p>
<col style="mso-width-source: userset; mso-width-alt: 3766; &lt;br /&gt;  width: 77pt;" span="5" width="103"></col>
<table style="border-collapse: &lt;br /&gt;  collapse; width: 462pt;" border="0" cellspacing="0" cellpadding="0" width="618">
<tbody></tbody>
<colgroup>
<col style="mso-width-source: userset; mso-width-alt: 3766; width: 77pt;" width="103"></col>
</colgroup>
<tbody>
<tr style="height: 38.25pt;" height="51">
<td class="style1" style="height: 38.25pt; width: 77pt;" width="103" height="51">F1</td>
<td class="style2" style="width: 77pt;" width="103">Help</td>
<td class="style1" style="width: 77pt;" width="103">Ctrl+F9</td>
<td class="style3" style="width: 77pt;" width="103">Minimize Workbook</td>
<td class="style1" style="width: 77pt;" width="103">Ctrl+Up Arrow</td>
<td class="style3" style="width: 77pt;" width="103">Move to Next Cell<br />
With Data Above</td>
</tr>
<tr style="height: 38.25pt;" height="51">
<td class="style4" style="height: 38.25pt; width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103" height="51">F2</td>
<td class="style5" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Edit</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+F10</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Restore Workbook</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+Down Arrow</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Move to Next Cell With Data Below</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style1" style="height: 25.5pt; width: 77pt;" width="103" height="34">F4</td>
<td class="style2" style="width: 77pt;" width="103">Repeat Action</td>
<td class="style1" style="width: 77pt;" width="103">Ctrl+F11</td>
<td class="style3" style="width: 77pt;" width="103">New Macro Sheet</td>
<td class="style1" style="width: 77pt;" width="103">Ctrl+Space Bar</td>
<td class="style3" style="width: 77pt;" width="103">Select Column</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style4" style="height: 25.5pt; width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103" height="34">F5</td>
<td class="style5" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Open Goto Dialog Box</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+F12</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Open</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+Tab</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Next Window</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style1" style="height: 25.5pt; width: 77pt;" width="103" height="34">F6</td>
<td class="style2" style="width: 77pt;" width="103">Next Pane</td>
<td class="style1" style="width: 77pt;" width="103">Ctrl+A</td>
<td class="style3" style="width: 77pt;" width="103">Select All<span style="mso-spacerun:yes"> </span></td>
<td class="style1" style="width: 77pt;" width="103">Ctrl+BackSpace</td>
<td class="style3" style="width: 77pt;" width="103">Goto Active Cell</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style4" style="height: 25.5pt; width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103" height="34">F7</td>
<td class="style5" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Spell Check</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+B</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Bold Selection</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Alt+F1</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Insert Chart in Current Sheet</td>
</tr>
<tr style="height: 38.25pt;" height="51">
<td class="style1" style="height: 38.25pt; width: 77pt;" width="103" height="51">F8</td>
<td class="style2" style="width: 77pt;" width="103">Extend Selection Mode</td>
<td class="style1" style="width: 77pt;" width="103">Ctrl+C</td>
<td class="style3" style="width: 77pt;" width="103">Copy Selection</td>
<td class="style1" style="width: 77pt;" width="103">Alt+F2</td>
<td class="style3" style="width: 77pt;" width="103">Save As</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td class="style4" style="height: 12.75pt; width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103" height="17">F9</td>
<td class="style5" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Calculate All</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+D</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Fill Down</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Alt+F4</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Quit Excel</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style1" style="height: 25.5pt; width: 77pt;" width="103" height="34">F10</td>
<td class="style2" style="width: 77pt;" width="103">Activate Menu</td>
<td class="style1" style="width: 77pt;" width="103">Ctrl+F</td>
<td class="style3" style="width: 77pt;" width="103">Open Find Menu</td>
<td class="style1" style="width: 77pt;" width="103">Alt+F6</td>
<td class="style3" style="width: 77pt;" width="103">Switch To VBA</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style4" style="height: 25.5pt; width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103" height="34">F11</td>
<td class="style5" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">New Chart</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+G</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Open Goto Dialog Box</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Alt+F8</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Open Macro List</td>
</tr>
<tr style="height: 38.25pt;" height="51">
<td class="style1" style="height: 38.25pt; width: 77pt;" width="103" height="51">F12</td>
<td class="style2" style="width: 77pt;" width="103">Save As</td>
<td class="style1" style="width: 77pt;" width="103">Ctrl+H</td>
<td class="style3" style="width: 77pt;" width="103">Open Find/Replace<br />
Menu</td>
<td class="style1" style="width: 77pt;" width="103">Alt+F11</td>
<td class="style3" style="width: 77pt;" width="103">Open VB Editor</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style4" style="height: 25.5pt; width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103" height="34">=</td>
<td class="style5" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Formula</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+I</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Italicize Selection</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Alt+D</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Open Data Menu</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style1" style="height: 25.5pt; width: 77pt;" width="103" height="34">Insert</td>
<td class="style2" style="width: 77pt;" width="103">Insert Mode</td>
<td class="style1" style="width: 77pt;" width="103">Ctrl+K</td>
<td class="style3" style="width: 77pt;" width="103">Insert<span style="mso-spacerun:yes"> <br />
</span>Hyperlink</td>
<td class="style1" style="width: 77pt;" width="103">Alt+E</td>
<td class="style3" style="width: 77pt;" width="103">Open Edit Menu</td>
</tr>
<tr style="height: 38.25pt;" height="51">
<td class="style4" style="height: 38.25pt; width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103" height="51">Delete</td>
<td class="style5" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Delete Active Cell&#8217;s Contents</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+N</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">New Workbook</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Alt+F</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Open File Menu</td>
</tr>
<tr style="height: 38.25pt;" height="51">
<td class="style1" style="height: 38.25pt; width: 77pt;" width="103" height="51">Home</td>
<td class="style2" style="width: 77pt;" width="103">Go to the Beginning<br />
of the Row</td>
<td class="style1" style="width: 77pt;" width="103">Ctrl+O</td>
<td class="style3" style="width: 77pt;" width="103">Open Workbook</td>
<td class="style1" style="width: 77pt;" width="103">Alt+H</td>
<td class="style3" style="width: 77pt;" width="103">Open Help Menu</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style4" style="height: 25.5pt; width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103" height="34">End</td>
<td class="style5" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Go to the End of theRow</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+P</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Print</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Alt+I</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Open Insert Menu</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style1" style="height: 25.5pt; width: 77pt;" width="103" height="34">Page Up</td>
<td class="style2" style="width: 77pt;" width="103">Page Up</td>
<td class="style1" style="width: 77pt;" width="103">Ctrl+R</td>
<td class="style3" style="width: 77pt;" width="103">Fill Right</td>
<td class="style1" style="width: 77pt;" width="103">Alt+O</td>
<td class="style3" style="width: 77pt;" width="103">Open Format Menu</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style4" style="height: 25.5pt; width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103" height="34">Page Down</td>
<td class="style5" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Page Down</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+S</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Save</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Alt+T</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Open Tools Menu</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style1" style="height: 25.5pt; width: 77pt;" width="103" height="34">Left Arrow</td>
<td class="style2" style="width: 77pt;" width="103">Move Left</td>
<td class="style1" style="width: 77pt;" width="103">Ctrl+U</td>
<td class="style3" style="width: 77pt;" width="103">Underline Selection</td>
<td class="style1" style="width: 77pt;" width="103">Alt+W</td>
<td class="style3" style="width: 77pt;" width="103">Open Window Menu</td>
</tr>
<tr style="height: 38.25pt;" height="51">
<td class="style4" style="height: 38.25pt; width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103" height="51">Right Arrow</td>
<td class="style5" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Move Right</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+V</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Paste</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+Shift+F3</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Create Names From Selection</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style1" style="height: 25.5pt; width: 77pt;" width="103" height="34">Up Arrow</td>
<td class="style2" style="width: 77pt;" width="103">Move Up</td>
<td class="style1" style="width: 77pt;" width="103">Ctrl+W</td>
<td class="style3" style="width: 77pt;" width="103">Close Workbook</td>
<td class="style1" style="width: 77pt;" width="103">Ctrl+Shift+F6</td>
<td class="style3" style="width: 77pt;" width="103">Previous Workbook</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style4" style="height: 25.5pt; width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103" height="34">Down Arrow</td>
<td class="style5" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Move Down</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+X</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Cut</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+Shift+F12</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Print</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style1" style="height: 25.5pt; width: 77pt;" width="103" height="34">Space Bar</td>
<td class="style2" style="width: 77pt;" width="103">Space</td>
<td class="style1" style="width: 77pt;" width="103">Ctrl+Y</td>
<td class="style3" style="width: 77pt;" width="103">Redo</td>
<td class="style1" style="width: 77pt;" width="103">Ctrl+Shift+A</td>
<td class="style3" style="width: 77pt;" width="103">Formula Arguments</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style4" style="height: 25.5pt; width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103" height="34">Tab</td>
<td class="style5" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Move Right</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+Z</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Undo</td>
<td class="style4" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+Shift+F</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Fomat Cells Font Tab</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style7" style="height: 25.5pt; width: 77pt;" width="103" height="34">Shift+F1</td>
<td class="style3" style="width: 77pt;" width="103">What&#8217;s This Help</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+`</td>
<td class="style3" style="width: 77pt;" width="103">Toggle Formula View</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+Shift+O</td>
<td class="style3" style="width: 77pt;" width="103">Select Comments</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style8" style="height: 25.5pt; width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103" height="34">Shift+F2</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Edit Comment</td>
<td class="style8" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+1</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Open Format Cell Menu</td>
<td class="style8" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+Shift+P</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Fomat Cells Font Tab</td>
</tr>
<tr style="height: 38.25pt;" height="51">
<td class="style7" style="height: 38.25pt; width: 77pt;" width="103" height="51">Shift+F3</td>
<td class="style3" style="width: 77pt;" width="103">Insert Function</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+2</td>
<td class="style3" style="width: 77pt;" width="103">Bold Selection</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+Shift+`</td>
<td class="style3" style="width: 77pt;" width="103">Format Cells -<br />
General Format</td>
</tr>
<tr style="height: 38.25pt;" height="51">
<td class="style8" style="height: 38.25pt; width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103" height="51">Shift+F4</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Find Again (With Find Open)</td>
<td class="style8" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+3</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Italicize Selection</td>
<td class="style8" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+Shift+1</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Format Cells &#8211; Number Format</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style7" style="height: 25.5pt; width: 77pt;" width="103" height="34">Shift+F5</td>
<td class="style3" style="width: 77pt;" width="103">Find</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+4</td>
<td class="style3" style="width: 77pt;" width="103">Underline Selection</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+Shift+2</td>
<td class="style3" style="width: 77pt;" width="103">Format Cells &#8211; Time<br />
Format</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style8" style="height: 25.5pt; width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103" height="34">Shift+F6</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Previous Pane</td>
<td class="style8" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+5</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Strikethrough Selection</td>
<td class="style8" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+Shift+3</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Format Cells &#8211; Date Format</td>
</tr>
<tr style="height: 38.25pt;" height="51">
<td class="style7" style="height: 38.25pt; width: 77pt;" width="103" height="51">Shift+F8</td>
<td class="style3" style="width: 77pt;" width="103">Add To Selection</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+8</td>
<td class="style3" style="width: 77pt;" width="103">Outline</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+Shift+4</td>
<td class="style3" style="width: 77pt;" width="103">Format Cells -<br />
Currency Format</td>
</tr>
<tr style="height: 38.25pt;" height="51">
<td class="style8" style="height: 38.25pt; width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103" height="51">Shift+F9</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Calculate Worksheet</td>
<td class="style8" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+9</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Hide Selected Rows</td>
<td class="style8" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+Shift+5</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Format Cells &#8211; Percent Format</td>
</tr>
<tr style="height: 38.25pt;" height="51">
<td class="style7" style="height: 38.25pt; width: 77pt;" width="103" height="51">Shift+F10</td>
<td class="style3" style="width: 77pt;" width="103">Right Click Menu</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+0</td>
<td class="style3" style="width: 77pt;" width="103">Hide Selected Columns</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+Shift+6</td>
<td class="style3" style="width: 77pt;" width="103">Format Cells -<br />
Exponent Format</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style8" style="height: 25.5pt; width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103" height="34">Shift+F11</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">New Worksheet</td>
<td class="style8" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+-</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Delete Selection</td>
<td class="style8" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+Shift+7</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Format Cells &#8211; Apply Border</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style7" style="height: 25.5pt; width: 77pt;" width="103" height="34">Shift+F12</td>
<td class="style3" style="width: 77pt;" width="103">Save</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+[</td>
<td class="style3" style="width: 77pt;" width="103">Go to Dependents</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+Shift+8</td>
<td class="style3" style="width: 77pt;" width="103">Select Region</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style8" style="height: 25.5pt; width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103" height="34">Shift+Left Arrow</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Select Left</td>
<td class="style8" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+]</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">All Dependents</td>
<td class="style8" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+Shift+9</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Unhide Rows</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style7" style="height: 25.5pt; width: 77pt;" width="103" height="34">Shift+Right Arrow</td>
<td class="style3" style="width: 77pt;" width="103">Select Right</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+;</td>
<td class="style3" style="width: 77pt;" width="103">Insert Date</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+Shift+0</td>
<td class="style3" style="width: 77pt;" width="103">Unhide Columns</td>
</tr>
<tr style="height: 38.25pt;" height="51">
<td class="style8" style="height: 38.25pt; width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103" height="51">Shift+Up Arrow</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Select Up</td>
<td class="style8" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+/</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Select Array</td>
<td class="style8" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+Shift+-</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Format Cells &#8211; Remove Border</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style7" style="height: 25.5pt; width: 77pt;" width="103" height="34">Shift+Down Arrow</td>
<td class="style3" style="width: 77pt;" width="103">Select Down</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+</td>
<td class="style3" style="width: 77pt;" width="103">Select Differences</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+Shift+=</td>
<td class="style3" style="width: 77pt;" width="103">Open Insert Dialog<br />
Box</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style8" style="height: 25.5pt; width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103" height="34">Shift+Space Bar</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Select Row</td>
<td class="style8" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+Insert</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Copy</td>
<td class="style8" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+Shift+[</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Direct Precedents</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style7" style="height: 25.5pt; width: 77pt;" width="103" height="34">Shift+Tab</td>
<td class="style3" style="width: 77pt;" width="103">Move Left</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+Delete</td>
<td class="style3" style="width: 77pt;" width="103">Delete To End Of Line</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+Shift+]</td>
<td class="style3" style="width: 77pt;" width="103">All Precedents</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style8" style="height: 25.5pt; width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103" height="34">Ctrl+F3</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Open Name Manager</td>
<td class="style8" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+Home</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Start Of Worksheet</td>
<td class="style8" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+Shift+;</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Insert Time</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style7" style="height: 25.5pt; width: 77pt;" width="103" height="34">Ctrl+F4</td>
<td class="style3" style="width: 77pt;" width="103">Close Window</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+End</td>
<td class="style3" style="width: 77pt;" width="103">End Of Worksheet</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+Shift+&#8217;</td>
<td class="style3" style="width: 77pt;" width="103">Copy Cell Value Above</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style8" style="height: 25.5pt; width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103" height="34">Ctrl+F5</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Restore Window Size</td>
<td class="style8" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+Page Up</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Previous Worksheet</td>
<td class="style8" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+Shift+/</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Select Array</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="style7" style="height: 25.5pt; width: 77pt;" width="103" height="34">Ctrl+F6</td>
<td class="style3" style="width: 77pt;" width="103">Next Workbook</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+Page Down</td>
<td class="style3" style="width: 77pt;" width="103">Next Worksheet</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+Shift+</td>
<td class="style3" style="width: 77pt;" width="103">Select Unequal Cells</td>
</tr>
<tr style="height: 38.25pt;" height="51">
<td class="style8" style="height: 38.25pt; width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103" height="51">Ctrl+F7</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Move Window</td>
<td class="style8" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+Left Arrow</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Move to Next Cell With Data to Left</td>
<td class="style8" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Ctrl+Shift+Space Bar</td>
<td class="style6" style="width: 77pt; text-underline-style: none; text-line-through: none; mso-pattern: black none;" width="103">Select All</td>
</tr>
<tr style="height: 38.25pt;" height="51">
<td class="style7" style="height: 38.25pt; width: 77pt;" width="103" height="51">Ctrl+F8</td>
<td class="style3" style="width: 77pt;" width="103">Resize Window</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+Right Arrow</td>
<td class="style3" style="width: 77pt;" width="103">Move to Next Cell<br />
With Data to Right</td>
<td class="style7" style="width: 77pt;" width="103">Ctrl+Shift+Tab</td>
<td class="style3" style="width: 77pt;" width="103">Previous Window</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://excelzoom.com/2009/02/excel-shortcut-keys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
