<?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-2010.com &#187; Tutorials</title>
	<atom:link href="http://www.excel-2010.com/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.excel-2010.com</link>
	<description></description>
	<lastBuildDate>Fri, 13 Aug 2010 08:45:44 +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>Excel DATEDIF</title>
		<link>http://www.excel-2010.com/excel-datedif/</link>
		<comments>http://www.excel-2010.com/excel-datedif/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 08:45:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[formula]]></category>

		<guid isPermaLink="false">http://www.excel-2010.com/?p=297</guid>
		<description><![CDATA[The DATEDIF function in Microsoft Excel calculates the difference, or interval,  between two dates. This difference can be expressed in a variety of ways. The function takes the form
=DATEDIF(Date1, Date2, Interval)
where Date1 and Date2 are the two dates and Interval defines how the date difference should be returned. Interval must be nclosed in quotes like this:]]></description>
			<content:encoded><![CDATA[<p>The DATEDIF function in Microsoft Excel calculates the difference, or <em>interval</em>,  between two dates. This difference can be expressed in a variety of ways. The function takes the form</p>
<p><strong>=DATEDIF(Date1, Date2, Interval)</strong></p>
<p>where Date1 and Date2 are the two dates and <em>Interval</em> defines how the date difference should be returned. Interval must be enclosed in quotes like this:</p>
<p><strong>=DATEDIF(Date1, Date2, &#8220;d&#8221;)</strong></p>
<p>These are the errors that DATEDIF may return if you get something wrong:</p>
<ul>
<li>#NUM error if Date1 is later than Date2</li>
<li>#VALUE error if either Date1 or Date2 are invalid dates</li>
<li>#NUM error if the Interval specified is not one of the allowed values</li>
</ul>
<p>The Interval must be one of the following values:</p>
<table class="standardTable">
<tbody>
<tr>
<th>Interval</th>
<th>Use</th>
</tr>
<tr>
<td>m</td>
<td>Months: the number of whole calendar months between the two dates</td>
</tr>
<tr>
<td>d</td>
<td>Days: the number of days between the dates</td>
</tr>
<tr>
<td>y</td>
<td>Years: the number of whole calendar years between the dates</td>
</tr>
<tr>
<td>ym</td>
<td>Months In Same Year: the number of months between the two dates if they were in the same year</td>
</tr>
<tr>
<td>yd</td>
<td>Days In Same Year: the number of days between the two dates if they were in the same year</td>
</tr>
<tr>
<td>md</td>
<td>Days In Same Month And Year: the number of days between the two dates if they were in the same month and year</td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<h2>DATEDIF Examples</h2>
<p>Try and predict what the result of the following examples will be:</p>
<table class="standardTable">
<tbody>
<tr>
<th>DATEDIF</th>
<th>Result</th>
</tr>
<tr>
<td><strong>=DATEDIF(01/01/2010, 01/06/2010, &#8220;d&#8221;)</strong></td>
<td>151</td>
</tr>
<tr>
<td><strong>=DATEDIF(01/01/2010, 15/01/2010, &#8220;d&#8221;)</strong></td>
<td>14</td>
</tr>
<tr>
<td><strong>=DATEDIF(01/01/2010, 01/06/2010, &#8220;m&#8221;)</strong></td>
<td>5</td>
</tr>
<tr>
<td><strong>=DATEDIF(01/01/2010, 15/01/2010, &#8220;m&#8221;)</strong></td>
<td>0</td>
</tr>
<tr>
<td><strong>=DATEDIF(01/01/2009, 01/06/2010, &#8220;m&#8221;)</strong></td>
<td>17</td>
</tr>
<tr>
<td><strong>=DATEDIF(18/08/2008, 01/03/2010, &#8220;y&#8221;)</strong></td>
<td>2</td>
</tr>
<tr>
<td><strong>=DATEDIF(01/01/2010, 31/12/2010, &#8220;y&#8221;)</strong></td>
<td>0</td>
</tr>
<tr>
<td><strong>=DATEDIF(01/01/2008, 01/06/2010, &#8220;ym&#8221;)</strong></td>
<td>5</td>
</tr>
<tr>
<td><strong>=DATEDIF(23/04/2003, 31/05/2005, &#8220;yd&#8221;)</strong></td>
<td>38</td>
</tr>
<tr>
<td><strong>=DATEDIF(17/02/1974, 28/01/1998, &#8220;md&#8221;)</strong></td>
<td>11</td>
</tr>
</tbody>
</table>
 <img src="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=297" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.excel-2010.com/excel-datedif/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel Offset</title>
		<link>http://www.excel-2010.com/excel-offset/</link>
		<comments>http://www.excel-2010.com/excel-offset/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 17:06:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[offset]]></category>

		<guid isPermaLink="false">http://www.excel-2010.com/?p=301</guid>
		<description><![CDATA[The Excel offset function is designed to return the contents of a range of cells that is offset from an initial range. The function takes the following arguments:]]></description>
			<content:encoded><![CDATA[<p>The <strong>Excel offset</strong> function is designed to return the contents of a range of cells that is offset from an initial range. The function takes the following arguments:</p>
<ul>
<li>the starting range to which the offset is to be applied &#8211; this can be one cell or a range</li>
<li>the number of rows to offset the starting range by &#8211; this can be negative</li>
<li>the number of columns to offset the starting range by &#8211; this can be negative</li>
<li>the height of the new range in rows</li>
<li>the width of the new range in columns</li>
</ul>
<p>The syntax for the Excel offset function is as follows:</p>
<blockquote><p>=Offset(range, rows, columns, height, width )</p></blockquote>
<p>Let&#8217;s consider the following data in a worksheet:</p>
<p><a href="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5leGNlbC0yMDEwLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8wOC9leGNlbC1vZmZzZXQuZ2lm"><img class="aligncenter size-full wp-image-304" title="Excel Offset" src="http://www.excel-2010.com/wp-content/uploads/2010/08/excel-offset.gif" alt="Excel Offset" width="332" height="129" /></a></p>
<p>Performing the offset</p>
<blockquote><p>=Offset(B3, 2, 1, 1, 1 )</p></blockquote>
<p>gives the contents of cell C5, i.e. 7.95.</p>
<p>Performing the offset</p>
<blockquote><p>=Offset(D5, -3, -2, 2, 2 )</p></blockquote>
<p>gives the contents of the cell range B2:D4</p>
 <img src="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=301" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.excel-2010.com/excel-offset/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel Count</title>
		<link>http://www.excel-2010.com/excel-count/</link>
		<comments>http://www.excel-2010.com/excel-count/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 12:19:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[count]]></category>

		<guid isPermaLink="false">http://www.excel-2010.com/?p=277</guid>
		<description><![CDATA[The Excel COUNT function counts the number of cells in a range that contain numbers. This function will not include blank cells or cells that contain non-numeric values (like words). To use the count function, type "=COUNT(A1:A10)" into the cell you want to hold the result. A1 to A10 is the range I chose, so you should substitute that with your own range.]]></description>
			<content:encoded><![CDATA[<p>The Excel COUNT function counts the number of cells in a range that contain numbers. This function will not include blank cells or cells that contain non-numeric values (like words). To use the count function, type &#8220;=COUNT(A1:A10)&#8221; into the cell you want to hold the result. A1 to A10 is the range I chose, so you should substitute that with your own range.</p>
<p>Let&#8217;s consider the following cells in a spreadsheet:</p>
<p><a href="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5leGNlbC0yMDEwLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8wNi9leGNlbC1jb3VudC5naWY="><img class="aligncenter size-full wp-image-278" title="Excel Count" src="http://www.excel-2010.com/wp-content/uploads/2010/06/excel-count.gif" alt="Excel Count" width="130" height="179" /></a></p>
<p>After typing =COUNT(A1:A6) and pressing Enter, Excel calculates the count to be 4.  There are 6 cells in the selected range, but one contains the word &#8220;dog&#8221; and one cell is blank. That means there are 4 cells that contain numeric values and so the count is 4.</p>
<h2>Count Nonblank Cells</h2>
<p>There is another count function that you can use in Excel: COUNTA. COUNTA returns a count of all the nonblank cells in a range.</p>
<p>Consider the following spreadsheet:</p>
<p><a href="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5leGNlbC0yMDEwLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8wNi9leGNlbC1jb3VudGEuZ2lm"><img class="aligncenter size-full wp-image-280" title="Excel COUNTA" src="http://www.excel-2010.com/wp-content/uploads/2010/06/excel-counta.gif" alt="Excel COUNTA" width="145" height="185" /></a></p>
<p>There are 6 cells in the range A1:A6. 2 are blank, 2 contain words and 2 contain numbers. This means that there are 4 nonblank cells (2 numbers and 2 words) so the COUNTA function returns 4.</p>
 <img src="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=277" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.excel-2010.com/excel-count/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel Keyboard Shortcuts</title>
		<link>http://www.excel-2010.com/excel-keyboard-shortcuts/</link>
		<comments>http://www.excel-2010.com/excel-keyboard-shortcuts/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 07:31:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[shortcuts]]></category>

		<guid isPermaLink="false">http://www.excel-2010.com/?p=270</guid>
		<description><![CDATA[Excel shortcuts can save you time when you are editing your spreadsheets. Keyboard shortcuts like ctrl-o to open a document, ctrl-n to create a new document and ctrl-s to save are common across all Microsoft Office programs, but there are some that are unique to Excel. Their use will help you get things done much quicker and will save you the hassle of searching for commands on the ribbon. It might take a little time to learn these shortcuts, but that time is well spent.]]></description>
			<content:encoded><![CDATA[<p>Excel shortcuts can save you time when you are editing your spreadsheets. Keyboard shortcuts like ctrl-o to open a document, ctrl-n to create a new document and ctrl-s to save are common across all Microsoft Office programs, but there are some that are unique to Excel. Their use will help you get things done much quicker and will save you the hassle of searching for commands on the ribbon. It might take a little time to learn these shortcuts, but that time is well spent.</p>
<table class="gridLines">
<tr>
<td>=(
</td>
<td>Start a formula
</td>
</tr>
<tr>
<td>Arrow keys
</td>
<td>Move one cell in the direction of the arrow
</td>
</tr>
<tr>
<td>Page Up
</td>
<td>Page Up
</td>
</tr>
<tr>
<td>Page down
</td>
<td>Page down
</td>
</tr>
<tr>
<td>Tab
</td>
<td>Move one cell to the right
</td>
</tr>
<tr>
<td>Alt tab
</td>
<td>Move one cell to the left
</td>
</tr>
<tr>
<td>F1
</td>
<td>Help
</td>
</tr>
<tr>
<td>F2
</td>
<td>Edit mode to edit a cell&#8217;s contents
</td>
</tr>
<tr>
<td>F3
</td>
<td>???
</td>
</tr>
<tr>
<td>F4
</td>
<td>???
</td>
</tr>
<tr>
<td>F5
</td>
<td>Go to
</td>
</tr>
<tr>
<td>F6
</td>
<td>Next pane
</td>
</tr>
<tr>
<td>F7
</td>
<td>Spellcheck
</td>
</tr>
<tr>
<td>F8
</td>
<td>???
</td>
</tr>
<tr>
<td>F9
</td>
<td>Calculate all
</td>
</tr>
<tr>
<td>F10
</td>
<td>Display key tips
</td>
</tr>
<tr>
<td>F11
</td>
<td>Insert a chart
</td>
</tr>
<tr>
<td>F12
</td>
<td>Save as
</td>
</tr>
<tr>
<td>F14
</td>
<td>Comments
</td>
</tr>
<tr>
<td>F15
</td>
<td>Function arguments
</td>
</tr>
<tr>
<td>F16
</td>
<td>Move to the next available cell in the table
</td>
</tr>
<tr>
<td>F17
</td>
<td>Find and replace
</td>
</tr>
<tr>
<td>F18
</td>
<td>Key tips
</td>
</tr>
<tr>
<td>F19
</td>
<td>Research pane (search, thesaurus etc)
</td>
</tr>
<tr>
<td>F20
</td>
<td>???
</td>
</tr>
<tr>
<td>F21
</td>
<td>Recalculate????
</td>
</tr>
<tr>
<td>F22
</td>
<td>Right click menu
</td>
</tr>
<tr>
<td>F23
</td>
<td>New worksheet
</td>
</tr>
<tr>
<td>F24
</td>
<td>Save as
</td>
</tr>
<tr>
<td>Home
</td>
<td>Start of row
</td>
</tr>
<tr>
<td>Alt &#8216; (apostrophe)
</td>
<td>Style menu
</td>
</tr>
<tr>
<td>Alt =
</td>
<td>Autosum
</td>
</tr>
<tr>
<td>Alt F
</td>
<td>Backstage view
</td>
</tr>
<tr>
<td>Alt H
</td>
<td>Display shortcuts
</td>
</tr>
<tr>
<td>Alt N
</td>
<td>Insert Menu
</td>
</tr>
<tr>
<td>Alt P
</td>
<td>Page Layout menu
</td>
</tr>
</table>
 <img src="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=270" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.excel-2010.com/excel-keyboard-shortcuts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel Merge And Center</title>
		<link>http://www.excel-2010.com/excel-merge-and-center/</link>
		<comments>http://www.excel-2010.com/excel-merge-and-center/#comments</comments>
		<pubDate>Wed, 26 May 2010 15:34:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[center]]></category>
		<category><![CDATA[merge]]></category>

		<guid isPermaLink="false">http://www.excel-2010.com/?p=258</guid>
		<description><![CDATA[Often in your worksheets, you'll need a title or heading to span multiple cells and you'll want Excel to display the title or heading in the center. This is where Excel's merge and center command comes in.]]></description>
			<content:encoded><![CDATA[<p>Often in your worksheets, you&#8217;ll need a title or heading to span multiple cells and you&#8217;ll want Excel to display the title or heading in the center. This is where Excel&#8217;s merge and center command comes in.</p>
<p>For example, look at the following spreadsheet that contains data about sales by month for the year 2010.</p>
<p><a href="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5leGNlbC0yMDEwLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8wNS9tZXJnZS1hbmQtY2VudGVyLmdpZg=="><img class="aligncenter size-full wp-image-259" title="Excel Merge And Center" src="http://www.excel-2010.com/wp-content/uploads/2010/05/merge-and-center.gif" alt="Excel Merge And Center" width="290" height="309" /></a></p>
<p>When we type the title &#8220;Sales By Month For 2010&#8243;, we can see that it spills out into other cells. It would help if we could merge all the cells above the table headings for the title to occupy and also center the title. We can do that with just one button: the <strong>Merge and Center</strong> button.</p>
<p>Select cells A1 to D1 and then click Home &gt; Alignment &gt; Merge and Center. Cells are merged and title centered! Press Cctrl-b to bold the text and there we have a nice looking title.</p>
<h2>Merge And Center Vertically</h2>
<p>We can do a similar thing vertically for row headings. Suppose we move our table to the right by one cell to make room for a row title.</p>
<p><a href="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5leGNlbC0yMDEwLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8wNS9tZXJnZS1hbmQtY2VudGVyLXZlcnRpY2FsLmdpZg=="><img class="aligncenter size-full wp-image-261" title="Merge and Center Vertically" src="http://www.excel-2010.com/wp-content/uploads/2010/05/merge-and-center-vertical.gif" alt="Merge and Center Vertically" width="354" height="309" /></a></p>
<p>Now, we can type the text &#8220;Months of the year &#8211; 2010&#8243; <em>in row A14</em>. The text needs to be in the bottom row because we&#8217;re going to rotate the text anticlockwise, as we&#8217;ll see.</p>
<p>Select cells A2 &#8211; A14 and then click the Merge and Center button. Those cells are merged, but we can&#8217;t see all the text. Now click the Orientation button, also in the Alignment group.</p>
<p><a href="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5leGNlbC0yMDEwLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8wNS9jaGFuZ2Utb3JpZW50YXRpb24tb2YtdGV4dC5naWY="><img class="aligncenter size-full wp-image-263" title="Change Orientation Of Text In Excel" src="http://www.excel-2010.com/wp-content/uploads/2010/05/change-orientation-of-text.gif" alt="Change Orientation Of Text In Excel" width="260" height="108" /></a></p>
<p>Select Rotate Up, and we should get the following:</p>
<p><a href="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5leGNlbC0yMDEwLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8wNS9tZXJnZS1hbmQtY2VudGVyLXZlcnRpY2FsLTAyLmdpZg=="><img class="aligncenter size-full wp-image-264" title="Merge And Center Cells Vertically" src="http://www.excel-2010.com/wp-content/uploads/2010/05/merge-and-center-vertical-02.gif" alt="Merge And Center Cells Vertically" width="354" height="313" /></a></p>
<p>Hold on, we selected Merge and <strong>Center</strong>, but the text isn&#8217;t centered. What&#8217;s wrong? Well, the text <em>is</em> centered &#8211; horizontally. It needs to be centered vertically, so we need to click the <em>Middle Align</em> button in the Alignment group.</p>
<p><a href="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5leGNlbC0yMDEwLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8wNS9taWRkbGUtYWxpZ24uZ2lm"><img class="aligncenter size-full wp-image-265" title="Middle Align In Excel" src="http://www.excel-2010.com/wp-content/uploads/2010/05/middle-align.gif" alt="Middle Align In Excel" width="264" height="100" /></a></p>
<p>This does the trick, so all that&#8217;s left to do is press ctrl-b to bold the text.</p>
 <img src="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=258" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.excel-2010.com/excel-merge-and-center/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tables In Excel 2010</title>
		<link>http://www.excel-2010.com/tables-in-excel-2010/</link>
		<comments>http://www.excel-2010.com/tables-in-excel-2010/#comments</comments>
		<pubDate>Wed, 19 May 2010 07:03:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[tables]]></category>

		<guid isPermaLink="false">http://www.excel-2010.com/?p=12</guid>
		<description><![CDATA[A table is a range of cells that hold data, with each row corresponding to a single occurrence of an entity. When you create a table, you can manage and analyze the data in that table independently of data outside the table. You can format the table, filter the table columns and also publish a table to a server that is running Windows SharePoint Services 3.0 or Windows SharePoint Services "4". Usually there is an initial row of text headings that describe the columns of data.]]></description>
			<content:encoded><![CDATA[<p>A table is a range of cells that hold data, with each row corresponding to a single occurrence of an entity. When you create a table, you can manage and analyze the data in that table <em>independently of data outside the table</em>. You can format the table, filter the table columns and also publish a table to a server that is running Windows SharePoint Services 3.0 or Windows SharePoint Services &#8220;4&#8243;. Usually there is an initial row of text headings that describe the columns of data. For example, you might have rows and rows of employee data with the following column headings:</p>
<ul>
<li>First Name</li>
<li>Last Name</li>
<li>Age</li>
<li>Salary</li>
</ul>
<p>Each row in the table would hold the above details for a particular employee. But as Excel 2010 handles tabular data perfectly well by default, why would you want to put your data into a table? Well, tables allow Excel to respond more appropriately to your data if it is held in a a table. For example, if you create a chart based on the data in a table, the chart will expand as you add more rows to that table.</p>
<h2>Creating Tables In Excel 2010</h2>
<p>It&#8217;s quite easy to create a table in Excel 2010; you simply make a cell active that is in the range of cells you want to convert into a table and then click Insert &gt; Tables &gt; Table. If your data has headers, make sure to check the <em>My table has headers</em> box in the create table window, and then those headers will be used. The good thing is that you don&#8217;t need to select the entire range of cells: Excel can identify the limits of the data and also identify the headings. The following is an example of tabular data before we convert it into a table.</p>
<p><a href="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5leGNlbC0yMDEwLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8wNS90YWJsZXMtaW4tZXhjZWwuZ2lm"><img class="aligncenter size-full wp-image-247" title="Tables In Excel" src="http://www.excel-2010.com/wp-content/uploads/2010/05/tables-in-excel.gif" alt="Tables In Excel" width="274" height="209" /></a></p>
<p>After we convert it to a table, it looks like this:</p>
<p><a href="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5leGNlbC0yMDEwLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8wNS9jb252ZXJ0LXRvLWEtdGFibGUtaW4tZXhjZWwuZ2lm"><img class="aligncenter size-full wp-image-248" title="Converting To A Table In Excel 2010" src="http://www.excel-2010.com/wp-content/uploads/2010/05/convert-to-a-table-in-excel.gif" alt="Converting To A Table In Excel 2010" width="321" height="211" /></a></p>
<p>If you create a table this way, it is given default formatting that you can change using the Table Styles on the Design tab that appears when the table is selected. Alternatively, you can select a style when you create the table. To do this, activate any cell in the range you want to convert and click Home &gt; Styles &gt; Format as Table. Choose a style from the panel that opens and your table will be created with that style.</p>
<h2>Properties Of Excel Tables</h2>
<p>The main things to notice about tables are:</p>
<ul>
<li>When any cell in the table becomes active, the Table Tools contextual tab is displayed.</li>
<li>Each column heading contains a drop down list that you can use to sort or filter the data in that column.</li>
<li>If you scroll so far down the table that the column headings disappear, the letters that mark the column headings in the worksheet are replaced with the table&#8217;s column headings.</li>
<li>The cells have background colours to enhance readability.</li>
<li>Background colours are applied to the cells to help readability.</li>
</ul>
<h2>Deleting An Excel Table</h2>
<p>If you later decide that you&#8217;d prefer your data in its original form (i.e. not in a table), you can convert it back to a range of cells. Click anywhere in the table and then on the Table Tools tab, click Design &gt; Tools &gt; Convert To Range. Once the data is converted back to a range, the table features are no longer available.</p>
<p>Note that the formatting that was applied to the table is still present.</p>
<p>If you want to delete the table and all its data, select the table and press the delete key.</p>
 <img src="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=12" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.excel-2010.com/tables-in-excel-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel Sum</title>
		<link>http://www.excel-2010.com/excel-sum/</link>
		<comments>http://www.excel-2010.com/excel-sum/#comments</comments>
		<pubDate>Fri, 14 May 2010 14:35:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[autosum]]></category>
		<category><![CDATA[sum]]></category>

		<guid isPermaLink="false">http://www.excel-2010.com/?p=241</guid>
		<description><![CDATA[Summing is simply the act of adding values together. Excel provides multiple techniques that you can use to sum data.]]></description>
			<content:encoded><![CDATA[<p>Summing is simply the act of adding values together. Excel provides multiple techniques that you can use to sum data.</p>
<h2>Different Ways To Sum Data In Excel</h2>
<h3>Using The Status Bar</h3>
<p>If you select a number of cells, Excel displays their total, amongst other things, in the status bar.</p>
<p><a href="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5leGNlbC0yMDEwLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8wNS9zdW0taW4tc3RhdHVzLWJhci5naWY="><img class="aligncenter size-full wp-image-242" title="Displaying The Sum In The Status Bar" src="http://www.excel-2010.com/wp-content/uploads/2010/05/sum-in-status-bar.gif" alt="Displaying The Sum In The Status Bar" width="259" height="63" /></a></p>
<p>The status bar is positioned at the bottom of the window. The sum value displayed there updates immediately as you select more or fewer cells. Also displayed there are the average and cell count values. To select or deselect values for display on the status bar, right click the status bar and either check or uncheck the options presented.</p>
<h2>Excel Autosum</h2>
<p>The autosum function in Excel is so useful it appears on both the Home tab <em>and</em> the Formulas tab. If you have a column of numbers, you can make the cell below that column active and click Home &gt; Editing &gt; Autosum.</p>
<p><a href="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5leGNlbC0yMDEwLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8wNS9leGNlbC1hdXRvc3VtLmdpZg=="><img class="aligncenter size-full wp-image-243" title="Excel Autosum" src="http://www.excel-2010.com/wp-content/uploads/2010/05/excel-autosum.gif" alt="Excel Autosum" width="226" height="197" /></a></p>
<p>To confirm that Excel has the correct range of cells, press Enter or click the autosum button again. Excel then displays the value of the sum.</p>
<p>Similarly, if you have a row of numbers, you can use the autosum function to sum them. In this case, make the cell active that is positioned to the right of the row and click the autosum button.</p>
<h3>The Sum Function</h3>
<p>Excel also has the SUM function that we can use. To enter a simple sum formula, type <strong>=SUM</strong> in a cell, followed by an opening parenthesis. Next, type one or more numbers, cell references, or cell ranges, separated by commas. Then, type a closing parenthesis and press ENTER to display the result. You can also use your mouse to select cells that contain data that you want to sum.</p>
<p>For example, look at the image above used to illustrate autosum. The cell that holds the sum has the formula <strong>=SUM(A1:A6)</strong>.</p>
 <img src="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=241" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.excel-2010.com/excel-sum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sparklines In Excel</title>
		<link>http://www.excel-2010.com/sparklines-in-excel/</link>
		<comments>http://www.excel-2010.com/sparklines-in-excel/#comments</comments>
		<pubDate>Fri, 14 May 2010 11:59:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[sparklines]]></category>

		<guid isPermaLink="false">http://www.excel-2010.com/?p=17</guid>
		<description><![CDATA[New to Microsoft Excel 2010 are Sparklines. Sparklines are simple and compact graphs that show trends. Its small size means that a sparkline can fit inside a single cell to give you "at a glance" information about your data. If you need  to present trends very clearly in a small space, then sparklines are an ideal solution.]]></description>
			<content:encoded><![CDATA[<p>New to Microsoft Excel 2010 are Sparklines. Sparklines are simple and compact graphs that show trends. Their small size means that sparklines can fit inside a single cell to give you &#8220;at a glance&#8221; information about your data. If you need  to present trends very clearly in a small space, then sparklines are an ideal solution.</p>
<p>Sparklines were developed by Edward Tufte to give a simple, condensed way to present trends and variation, associated with a measurement such as average temperature or stock market activity.</p>
<p>Let&#8217;s get stuck in and create some sparklines in Excel now. You can use the simple example <a href="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5leGNlbC0yMDEwLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8wNS9tb250aGx5LWZ1ZWwtYmlsbHMueGxzeA==">here</a>.</p>
<p>Open up the worksheet and then click in cell G3 to make it active. We&#8217;re going to insert a sparkline in this cell that represents the monthly fuel bills to its left. It helps to position a sparkline near its data for greatest impact. With G3 active, click Insert &gt;Sparklines &gt; Line.</p>
<p><a href="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5leGNlbC0yMDEwLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8wNS9jcmVhdGUtc3BhcmtsaW5lcy13aW5kb3cuZ2lm"><img class="aligncenter size-full wp-image-231" title="Create Sparklines Window" src="http://www.excel-2010.com/wp-content/uploads/2010/05/create-sparklines-window.gif" alt="Create Sparklines Window" width="334" height="211" /></a></p>
<p>Excel has already identified cell G3 as the Location Range because that was the active cell. We now need to tell Excel what data to use for the sparkline, and we can do that by selecting cells A3 to F3. When these cells are selected, Excel puts A3:F3 into the Data Range box. Click OK and a <em>line</em> sparkline  is created.</p>
<p><a href="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5leGNlbC0yMDEwLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8wNS9saW5lLXNwYXJrbGluZS1pbi1leGNlbC0yMDEwLmdpZg=="><img class="aligncenter size-full wp-image-233" title="Line Sparkline In Excel 2010" src="http://www.excel-2010.com/wp-content/uploads/2010/05/line-sparkline-in-excel-2010.gif" alt="Line Sparkline In Excel 2010" width="484" height="91" /></a></p>
<p>Whereas charts in Excel are objects, sparklines are actually placed in a cell&#8217;s background. This means that you can enter text in a cell and use the sparkline as its background. For example, we could type some text into cell G3 and the sparkline would act as its background. Some people may not like the way that text inserted in this way obscures the tiny sparkline.</p>
<p>There aren&#8217;t many formatting changes we can make to this sparkline, but let&#8217;s make some that may prove useful. Let&#8217;s add some markers. With cell G3 active, you should see the Sparkline Tools tab in the ribbon. Click Design &gt; Style &gt; Marker Colour &gt; High Point, and select a colour that contrasts with the line colour. Do the same for the Low Point too.</p>
<p><a href="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5leGNlbC0yMDEwLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8wNS9saW5lLW1hcmtlcnMtc3BhcmtsaW5lcy5naWY="><img class="aligncenter size-full wp-image-235" title="Line Markers On Sparklines" src="http://www.excel-2010.com/wp-content/uploads/2010/05/line-markers-sparklines.gif" alt="Line Markers On Sparklines" width="68" height="24" /></a></p>
<p>To delete a sparkline from a cell, pressing the delete key will do you no good! This is because the sparkline is in the cell&#8217;s background. Instead, you need to click the Clear button on the Design tab.</p>
<p>Let&#8217;s leave the line sparkline where it is and create a column sparkline below it so that we can compare them. Make cell G4 active and click  Insert &gt;Sparklines &gt;Column. Select the data cells again and click OK. Now, we have the following sparklines:</p>
<p><a href="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5leGNlbC0yMDEwLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8wNS9jb2x1bW4tc3BhcmtsaW5lLWluLWV4Y2VsLTIwMTAuZ2lm"><img class="aligncenter size-full wp-image-237" title="Column Sparklines In Excel 2010" src="http://www.excel-2010.com/wp-content/uploads/2010/05/column-sparkline-in-excel-2010.gif" alt="Column Sparklines In Excel 2010" width="484" height="115" /></a></p>
<p>If you decide to change the sparkline&#8217;s type, you can simply click on the one you want in the Type group on the Design tab. The sparkline will immediately change to that type.</p>
 <img src="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=17" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.excel-2010.com/sparklines-in-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Absolute Reference In Excel</title>
		<link>http://www.excel-2010.com/absolute-reference-in-excel/</link>
		<comments>http://www.excel-2010.com/absolute-reference-in-excel/#comments</comments>
		<pubDate>Thu, 13 May 2010 10:21:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[cell reference]]></category>

		<guid isPermaLink="false">http://www.excel-2010.com/?p=39</guid>
		<description><![CDATA[By default, cell references in Excel are relative. For example, if you have the following formula in cell C1:]]></description>
			<content:encoded><![CDATA[<p>By default, cell references in Excel are relative. For example, if you have the following formula in cell C1:</p>
<p><a href="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5leGNlbC0yMDEwLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8wNS9yZWxhdGl2ZS1jZWxsLXJlZmVyZW5jZXMtaW4tZXhjZWwuZ2lm"><img class="aligncenter size-full wp-image-219" title="Relative Cell References In Excel" src="http://www.excel-2010.com/wp-content/uploads/2010/05/relative-cell-references-in-excel.gif" alt="Relative Cell References In Excel" width="228" height="93" /></a></p>
<p>and you copy the formula to cell C2, you will get <strong>=A2+B2</strong>. This is because the cell references are <em>relative</em>. The contents of cell C1 are calculated to be the sum of the the cell that is 2 cells to the left and the cell that is 1 cell to the left. This easily transposes to cell C2.</p>
<p>To demonstrate, I copied cell C1 to cell C2 and got this:</p>
<p><a href="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5leGNlbC0yMDEwLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8wNS9yZWxhdGl2ZS1yZWZlcmVuY2VzLWluLWV4Y2VsLmdpZg=="><img class="aligncenter size-full wp-image-220" title="Relative References In Excel" src="http://www.excel-2010.com/wp-content/uploads/2010/05/relative-references-in-excel.gif" alt="Relative References In Excel" width="318" height="121" /></a></p>
<p>You can see in the formula bar that the original formula of =A1+B2 has been transformed to =A2+B2 when copied to cell C2.</p>
<p>But what if we want to always use A1+B1 in all cells we copy that formula to? This is where <em>absolute cell references</em> come in.</p>
<h2>How To Construct An Absolute Cell Reference</h2>
<p>In Excel, we create an absolute cell reference by using a &#8220;$&#8221; before each letter and number. The formula for C1 then becomes</p>
<blockquote><p>=$A$1+$B$2</p></blockquote>
<p>Copying that formula to C2 retains those absolute references and we find the that C2 also uses <strong>=$A$1+$B$2</strong>.</p>
<p>You can also mix ansolute with relative references like this: A$1. Here the row is fixed at one, but the column remains relative.</p>
 <img src="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=39" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.excel-2010.com/absolute-reference-in-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cell References In Excel</title>
		<link>http://www.excel-2010.com/cell-references-in-excel/</link>
		<comments>http://www.excel-2010.com/cell-references-in-excel/#comments</comments>
		<pubDate>Thu, 13 May 2010 09:42:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[cell reference]]></category>

		<guid isPermaLink="false">http://www.excel-2010.com/?p=212</guid>
		<description><![CDATA[A cell reference refers to a particular cell or range of cells in your worksheet. Cell references are useful for Excel to identify data for use in formulas to calculate results based on your data.]]></description>
			<content:encoded><![CDATA[<p>A cell reference refers to a particular cell or range of cells in your worksheet. Cell references are useful for Excel to identify data for use in formulas to calculate results based on your data.</p>
<p>You can easily tell what the cell reference is by looking at the cross section of the row and column for that cell. For example, the cell below occurs at the cross section of column C and Row 3.</p>
<p><a href="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5leGNlbC0yMDEwLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8wNS9jZWxsLXJlZmVyZW5jZXMtaW4tZXhjZWwuZ2lm"><img class="aligncenter size-full wp-image-213" title="Cell References In Excel 2010" src="http://www.excel-2010.com/wp-content/uploads/2010/05/cell-references-in-excel.gif" alt="Cell References In Excel 2010" width="301" height="109" /></a></p>
<p>The cell reference is therefore C3 and we can use C3 to refer to the data in that cell.</p>
<p>We can use cell references to refer to:</p>
<ul>
<li> Data from one cell in your worksheet.</li>
<li>Data that is contained in different areas of your worksheet.</li>
<li>Data in cells on other worksheets in the same workbook</li>
</ul>
<h2>Cell References For A Range Of Cells</h2>
<p>C3 refers to the contents of just one cell. What if we want to refer to a range of cells?</p>
<p>Consider the following range of cells.</p>
<p><a href="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5leGNlbC0yMDEwLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxMC8wNS9jZWxsLXJlZmVyZW5jZXMtZm9yLWEtcmFuZ2Utb2YtY2VsbHMuZ2lm"><img class="aligncenter size-full wp-image-214" title="Cell References For A Range Of Cells" src="http://www.excel-2010.com/wp-content/uploads/2010/05/cell-references-for-a-range-of-cells.gif" alt="Cell References For A Range Of Cells" width="303" height="115" /></a></p>
<p>The range goes from cell D2 to D4 so the range is denoted by <strong>D2:D4</strong>.</p>
<p>So far we have looked at cell references on the sme worksheet. Let&#8217;s now look at references to cells on different worksheets.</p>
<h2>Cell References On Other Worksheets</h2>
<p>Suppose that we are using two worksheets in the same workbook: Sheet1 and Sheet2. We are creating a formula in Sheet1 that uses data in cell E12 on Sheet2. The reference to this cell is simply <strong>Sheet2!E12</strong>. Don&#8217;t forget the exclamation mark after the worksheet name.</p>
<p>For example, let&#8217;s suppose that we are working on Sheet1 and we want to sum the values of cells A1 to A10 on Sheet2. The formula would be</p>
<blockquote><p>=SUM(Sheet2!A1:A10)</p></blockquote>
<p>Dont worry too much about how to create formulas, the important part is the <strong>Sheet2!A1:A10</strong>. Note that the <strong>Sheet!</strong> bit tells Excel that the cells are on Sheet2 and the <strong>A1:A10</strong> bit tells Excel that it&#8217;s dealing with the range of cells A1 to A10.</p>
<p>By default, cell references in Excel are <em>relative</em>, however, we can use <a href="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5leGNlbC0yMDEwLmNvbS9hYnNvbHV0ZS1yZWZlcmVuY2UtaW4tZXhjZWwv">absolute references in Excel</a> too.</p>
 <img src="http://www.excel-2010.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=212" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.excel-2010.com/cell-references-in-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
