<?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 Tutorials</title>
	<atom:link href="http://www.excel-2010.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.excel-2010.com</link>
	<description>Excel 2010 Tutorials</description>
	<lastBuildDate>Fri, 24 May 2013 08:45:23 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>VLOOKUP Excel</title>
		<link>http://www.excel-2010.com/vlookup-excel/</link>
		<comments>http://www.excel-2010.com/vlookup-excel/#comments</comments>
		<pubDate>Mon, 27 Feb 2012 08:51:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[VLOOKUP]]></category>

		<guid isPermaLink="false">http://www.excel-2010.com/?p=465</guid>
		<description><![CDATA[VLOOKUP Tutorial The explanation for how VLOOKUP works in Excel is far more complicated than actually using it. The best thing to do is to get a rough idea of the arguments that VLOOKUP requires, and what it returns to you, and then quickly go on to look at a few VLOOKUP examples. Imagine you [...]]]></description>
				<content:encoded><![CDATA[<h2>VLOOKUP Tutorial</h2>
<p>The explanation for how VLOOKUP works in Excel is far more complicated than actually using it. The best thing to do is to get a rough idea of the arguments that VLOOKUP requires, and what it returns to you, and then quickly go on to look at a few VLOOKUP examples.</p>
<p>Imagine you have the following spreadsheet:</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2012/02/vlookup-example-01.gif"><img class="aligncenter size-full wp-image-467" title="VLOOKUP Example" src="http://www.excel-2010.com/wp-content/uploads/2012/02/vlookup-example-01.gif" alt="VLOOKUP Example" width="319" height="265" /></a></p>
<p>In this example, you need Excel to give you the <strong>country code</strong> if you give Excel the <strong>country</strong>. It&#8217;s helpful to break down what you as a human would do to complete this task. Let&#8217;s get the country code for Angola now.</p>
<ol>
<li>State what we are searching for, and that is the text &#8220;Angola&#8221;</li>
<li>Then we identify what table contains the data we need, and that&#8217;s A2:B11.</li>
<li>Then we determine what column holds the information we need Excel to return to us, and that&#8217;s column 2 (country code).</li>
</ol>
<p>These three pieces of information are precisely what Excel needs to perform the VLOOKUP, and they are provided in the following format:</p>
<blockquote><p>VLOOKUP(search_value, table_array, column_to_return)</p></blockquote>
<p>So, to get the country code for Angola, we would use the following VLOOKUP:</p>
<blockquote><p>=VLOOKUP(&#8220;Angola&#8221;, A2:B11, 2)</p></blockquote>
<p>Don&#8217;t forget the &#8220;=&#8221; at the beginning of the <a href="http://www.excel-2010.com/formulas-in-excel-2010/">formula</a>.</p>
<p>The above example shows the most basic way of using VLOOKUP, and it returns an <em>exact match</em> on the country code. If &#8220;Angola&#8221; couldn&#8217;t be found in the table, Excel would return #N/A. We can, however, provide an additional parameter to Excel&#8217;s VLOOKUP: not_exact_match. The format then looks like:</p>
<blockquote><p>VLOOKUP(search_value, table_array, column_to_return, not_exact_match)</p></blockquote>
<p>not_exact_match takes the value TRUE or FALSE. If set to FALSE, Excel tries to find an exact match. If set to TRUE, Excel finds the largest value in column 1 that is less than or equal to the search value. Imagine we were trying to get the country code for the fictional country &#8220;Amporo&#8221;, which doesn&#8217;t exist in the table. Here, it only makes sense to look for an exact match, so we would use:</p>
<blockquote><p>=VLOOKUP(&#8220;Amporo&#8221;, A2:B11, 2, FALSE)</p></blockquote>
<p>Excel would return #N/A because &#8220;Amporo&#8221; doesn&#8217;t exist in the table. If, instead we used:</p>
<blockquote><p>=VLOOKUP(&#8220;Amporo&#8221;, A2:B11, 2, TRUE)</p></blockquote>
<p>then Excel would return AS. American Samoa is the largest value less than or equal to Amporo, so AS gets returned.</p>
<p>Now that we&#8217;ve seen VLOOKUP in action, let&#8217;s visit the official definition:</p>
<blockquote><p>VLOOKUP searches for a value in the first column of a table array and returns a value in the same row from another column in the table array.</p>
<p>The V in VLOOKUP stands for vertical. Use VLOOKUP instead of HLOOKUP when your comparison values are located in a column to the left of the data that you want to find.</p></blockquote>
<p>Have a look at this illustrative <strong>VLOOKUP example</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.excel-2010.com/vlookup-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove Duplicates From Excel</title>
		<link>http://www.excel-2010.com/remove-duplicates-from-excel/</link>
		<comments>http://www.excel-2010.com/remove-duplicates-from-excel/#comments</comments>
		<pubDate>Sat, 11 Feb 2012 17:12:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[duplicates]]></category>

		<guid isPermaLink="false">http://www.excel-2010.com/?p=438</guid>
		<description><![CDATA[The ability to remove duplicate entries from a list is a useful one, and one that can be used in a variety of every day situations. Imagine, for example, that you are writing a shopping list and are copying and pasting ingredients from several recipes into an excel spreadsheet. Some ingredients will be repeated. Garlic [...]]]></description>
				<content:encoded><![CDATA[<p>The ability to remove duplicate entries from a list is a useful one, and one that can be used in a variety of every day situations. Imagine, for example, that you are writing a shopping list and are copying and pasting ingredients from several recipes into an excel spreadsheet. Some ingredients will be repeated. Garlic is an ingredient in spaghetti bolognese, chicken and ginger, and so on. In your spreadsheet, many ingredients may be duplicated several times. How do you remove these duplicates?</p>
<p>It&#8217;s easier than you think. The hardest part is finding the command to do it!</p>
<p>That very command is found on the Data tab in the Data Tools group.</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2012/02/remove-duplicates-command.gif"><img class="aligncenter size-full wp-image-444" title="Remove Duplicates Command" src="http://www.excel-2010.com/wp-content/uploads/2012/02/remove-duplicates-command.gif" alt="Remove Duplicates Command" width="481" height="119" /></a></p>
<p>Here is a <a href="http://www.excel-2010.com/wp-content/uploads/2012/02/ingredients.xlsx">sample spreadsheet</a> with ingredients in it. Open that in Excel and then click the <strong>Remove Duplicates</strong> button. The <em>Remove Duplicates</em> window opens and allows you to confirm the column that you will perform the operation on. In our simple spreadsheet, Excel rightly selects Column A.</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2012/02/remove-duplicates-window.gif"><img class="aligncenter size-full wp-image-446" title="Remove Duplicates Window" src="http://www.excel-2010.com/wp-content/uploads/2012/02/remove-duplicates-window.gif" alt="Remove Duplicates Window" width="450" height="283" /></a></p>
<p>Click OK and a confirmation dialogue informs us that 4 duplicate values were found and removed (18 unique values remain).</p>
<p>If you tend to do a lot of removing duplicates, why not add the command to the Quick Access Toolbar? That way you won&#8217;t have to jump to the Data tab every tim you want to use it. Right click on the Remove Duplicates command and select <em>Add to Quick Access Toolbar</em>.</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2012/02/add-to-quick-access-toolbar-02.gif"><img class="aligncenter size-full wp-image-443" title="Add to Quick Access Toolbar" src="http://www.excel-2010.com/wp-content/uploads/2012/02/add-to-quick-access-toolbar-02.gif" alt="Add to Quick Access Toolbar" width="357" height="163" /></a></p>
<p>Now the command will appear in the Quick Access Toolbar (in top left hand corner of the screen). If you later decide to remove it again, it&#8217;s a simple case of right clicking on it and selecting <em>Remove from Quick Access Toolbar</em>.</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2012/02/remove-duplicates-in-qat.gif"><img class="aligncenter size-full wp-image-452" title="Remove Duplicates Command in the Quick Access Toolbar" src="http://www.excel-2010.com/wp-content/uploads/2012/02/remove-duplicates-in-qat.gif" alt="Remove Duplicates Command in the Quick Access Toolbar" width="174" height="143" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.excel-2010.com/remove-duplicates-from-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Count The Number Of Cells With Text In Excel</title>
		<link>http://www.excel-2010.com/count-the-number-of-cells-with-text-in-excel/</link>
		<comments>http://www.excel-2010.com/count-the-number-of-cells-with-text-in-excel/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 19:58:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[count]]></category>
		<category><![CDATA[COUNTA]]></category>

		<guid isPermaLink="false">http://www.excel-2010.com/?p=418</guid>
		<description><![CDATA[If you ever need to count the number of cells that contain text in Excel, there is a very easy way to do it. You will need two basic functions:]]></description>
				<content:encoded><![CDATA[<p>If you ever need to count the number of cells that contain text in Excel, there is a very easy way to do it. You will need two basic functions:</p>
<ul>
<li>COUNT &#8211; this Excel function returns the number of cells in a range that contain numbers</li>
<li>COUNTA &#8211; this function returns the number of cells that are not empty</li>
</ul>
<p>Intuitively, we know that the number of cells that contain <em>text</em> (not numbers!) is equal to the number of non blank cells &#8211; the number of cells containing numbers. In other words: <strong>COUNTA &#8211; COUNT</strong>.</p>
<p>Let&#8217;s look at a simple example to illustrate. Suppose we have the following data in our spreadsheet:</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2011/04/counta-count.gif"><img class="aligncenter size-full wp-image-421" title="counta-count" src="http://www.excel-2010.com/wp-content/uploads/2011/04/counta-count.gif" alt="COUNTA - COUNT" width="132" height="269" /></a></p>
<p>Place the cursor in the cell that you want to hold the results and type</p>
<p><code>=COUNTA(D1:D12)-COUNT(D1:D12)</code></p>
<p>Alternatively, if you type out<br />
<code>=COUNTA(</code></p>
<p>you can then drag your cursor over the cell range to select it and Excel will insert D1:D12 into the formula. You can do the same with the COUNT argument, too. When you press Enter, Excel resolves the equation and displays 5.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.excel-2010.com/count-the-number-of-cells-with-text-in-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel Resources</title>
		<link>http://www.excel-2010.com/excel-resources/</link>
		<comments>http://www.excel-2010.com/excel-resources/#comments</comments>
		<pubDate>Mon, 21 Mar 2011 18:31:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[excel resources]]></category>

		<guid isPermaLink="false">http://www.excel-2010.com/?p=90</guid>
		<description><![CDATA[There are a great many Microsoft Excel resources on the internet, and some are of a really high quality. Some even cater to Excel 2010 - the most recent version of Excel. To help you get to grips with this ubiquitous spreadsheet program, we've listed some of the better Excel resources here.]]></description>
				<content:encoded><![CDATA[<p>There are a great many Microsoft Excel resources on the internet, and some are of a really high quality. Some even cater to Excel 2010 &#8211; the most recent version of Excel. To help you get to grips with this ubiquitous spreadsheet program, we&#8217;ve listed some of the better Excel resources here.</p>
<ul>
<li><a href="http://www.lynda.com/home/DisplayCourseNoTabs.aspx?lpk2=61219&amp;utm_medium=affiliate&amp;utm_source=ldc_affiliate&amp;utm_content=524&amp;utm_campaign=CD1505&amp;bid=524&amp;aid=CD1505&amp;opt=">Excel Tutorials by Lynda.com</a> &#8211; very high quality video tutorials for all levels at lynda.com</li>
<li><a href="http://www.mrexcel.com/">Mr Excel</a> &#8211; the Excel monolith! The number one destination if you need help with Excel</li>
<li><a href="http://www.ozgrid.com/">OzGrid</a> &#8211; a fantastic resource for Excel tutorials and tips. One of the better ones out there</li>
<li><a href="http://www.thefinancialmodeler.com/">The Financial Modeler</a> &#8211; a focus on financial models, with sometimes complicated tutorials. Older versions of Excel covered.</li>
<li><a href="http://www.exceldigest.com/myblog">Excel Digest</a> &#8211; numerous well written Excel tutorials.</li>
<li><a href="http://xldennis.wordpress.com/">XL Dennis</a> &#8211; frequently updated Excel tutorial site that also provides tutorials on Microsoft .NET technology too</li>
<li><a href="http://easy-xl.com/">Easy XL</a> &#8211; this is actually a product that adds over 50 time saving data analysis and manipulation features to Excel. From the MrExcel people and worth a mention.</li>
<li><a href="http://www.youtube.com/ExcelIsFun">Excel Is Fun</a> &#8211; a whole bunch (over 1,000) of free video Excel tutorials on Youtube</li>
<li><a href="http://blogs.office.com/b/microsoft-excel/">Microsoft Excel Blog</a> &#8211; Excel tutorials and how-tos straight from the horse&#8217;s mouth</li>
<li><a href="http://spreadsheetpage.com/index.php/site/tips">Spreadsheet Page</a> &#8211; a plethora of Excel tips by John Walkenbach</li>
<li><a href="http://www.meadinkent.co.uk/excel.htm">Mead In Kent</a> &#8211; a selection of Excel tutorials, some a little more advanced</li>
<li><a href="http://people.usd.edu/~bwjames/tut/excel/">Excel Tutorials</a> &#8211; the tutorials here seem a little dated, but the principles are still useful</li>
<li><a href="http://www.baycongroup.com/el0.htm">Baycon Group</a> &#8211; a variety of Excel tutorials for beginners and upwards</li>
<li><a href="http://www.fgcu.edu/support/office2007/excel/index.asp">Excel 2007 Tutotials</a> &#8211; a selection of easy to follow Excel 2007 tutorials. An older version of Excel is used, but they are still useful.</li>
<li><a href="http://www.ncsu.edu/labwrite/res/gt/gt-menu.html">Graphing with Excel</a> &#8211; help with visualizing data in Excel</li>
<li><a href="http://mistupid.com/tutorials/excel/">M I Stupid</a> &#8211; a small selection of video tutorials on Excel</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.excel-2010.com/excel-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make A 2011 Calendar In Excel</title>
		<link>http://www.excel-2010.com/make-a-2011-calendar-in-excel/</link>
		<comments>http://www.excel-2010.com/make-a-2011-calendar-in-excel/#comments</comments>
		<pubDate>Fri, 07 Jan 2011 19:59:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[calendars]]></category>

		<guid isPermaLink="false">http://www.excel-2010.com/?p=400</guid>
		<description><![CDATA[Making a 2011 calendar in Excel 2010 is probably easier than you think. You don't have to spend time getting the cell formatting right and you don't have to figure out what Excel formulas to use. All you need to do is use an Excel Template.]]></description>
				<content:encoded><![CDATA[<p>Making a <strong>2011 calendar in Excel 2010</strong> is probably easier than you think. You don&#8217;t have to spend time getting the cell formatting right and you don&#8217;t have to figure out what <a href="http://www.excel-2010.com/formulas-in-excel-2010/">Excel formulas</a> to use. All you need to do is use an <em>Excel Template</em>.</p>
<p>To create a calendar in Excel, click the File tab &gt; New. In the workspace that opens, we should see some template categories.</p>
<div id="attachment_405" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.excel-2010.com/wp-content/uploads/2011/01/templates-in-excel.gif"><img class="size-medium wp-image-405" title="Templates In Excel" src="http://www.excel-2010.com/wp-content/uploads/2011/01/templates-in-excel-300x214.gif" alt="Templates In Excel" width="300" height="214" /></a><p class="wp-caption-text">Click to enlarge</p></div>
<p>The category we need is <em>Calendars</em>, so click on that one. Now we get to see the different calendar categories we can use.</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2011/01/calendar-templates.gif"><img class="aligncenter size-full wp-image-406" title="Calendar Templates In Excel" src="http://www.excel-2010.com/wp-content/uploads/2011/01/calendar-templates.gif" alt="Calendar Templates In Excel" width="511" height="233" /></a></p>
<p>As we want a calendar for 2011, click <em>2011 calendars</em>. There are quite a few different Excel calendars to choose from here. You can get an idea of what each one looks like by clicking on it to select it and then looking at its preview on the right.</p>
<p>When you&#8217;ve found one that you like, and have selected it, click on the download button beneath the preview. The calendar will open in Excel for you to amend or just print out.</p>
<p>Some of the calendar templates look pretty good, and they are all different, but to illustrate the quality, here is one month from the <em>2011 Yearly View Calendar</em>:</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2011/01/excel-calendar.gif"><img class="aligncenter size-full wp-image-407" title="Excel Calendar" src="http://www.excel-2010.com/wp-content/uploads/2011/01/excel-calendar.gif" alt="Excel Calendar" width="291" height="276" /></a></p>
<p>You should take a look around the different templates. They all have different styling, and some have all the significant dates marked in already. The calendar templates come directly from office.com so, as they aren&#8217;t already a pat of Excel, they need to be downloaded. This will explain any small delay you experience when you view and download the templates.</p>
<p>And, of course, you can change the styling of your calendar to your own tastes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.excel-2010.com/make-a-2011-calendar-in-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel Drop Down Lists</title>
		<link>http://www.excel-2010.com/excel-drop-down-lists/</link>
		<comments>http://www.excel-2010.com/excel-drop-down-lists/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 08:31:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[drop down list]]></category>
		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://www.excel-2010.com/?p=379</guid>
		<description><![CDATA[A drop down list in Excel presents a number of options for the user to select from. The advantages of eliciting a response from the user in this way are that:]]></description>
				<content:encoded><![CDATA[<p>A drop down list in Excel presents a number of options for the user to select from. The advantages of eliciting a response from the user in this way are that:</p>
<ul>
<li>the entries in the list give the user a clue about what values are allowed or expected</li>
<li>it&#8217;s easier for the user to select an option than to type one into a cell</li>
<li>it reduces typos that the user makes</li>
<li>you can make the list dynamic by populating it with entries from different cells elsewhere in the workbook</li>
</ul>
<p>To indicate that a drop down list is present, Excel displays a down arrow to the right of the cell.</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2010/11/drop-down-arrow.gif"><img class="aligncenter size-full wp-image-392" title="Drop Down Arrow" src="http://www.excel-2010.com/wp-content/uploads/2010/11/drop-down-arrow.gif" alt="Drop Down Arrow" width="83" height="24" /></a></p>
<h2>Create A Drop Down List From A Range Of Cells</h2>
<p>To create a drop down list from the contents of a range of cells, first of all type in the values you want to appear in the list in a single row or single column in your workbook. <em>Make sure that there are no blank entries in the list</em>.</p>
<p><script type="text/javascript"><!--
google_ad_client = "ca-pub-5599681931376795";
/* 336x280, created 14/09/10 */
google_ad_slot = "0279372385";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2010/11/drop-down-list-in-excel.gif"><img class="aligncenter size-full wp-image-385" title="Drop Down List In Excel" src="http://www.excel-2010.com/wp-content/uploads/2010/11/drop-down-list-in-excel.gif" alt="Drop Down List In Excel" width="77" height="129" /></a></p>
<p>Be aware that the order that you type in the data is the order that the values will appear in the drop down list so perform any sorting you need before you go any further.</p>
<p>Select the cell where you want the list to go and then click the <em>Data</em> tab and go to the <em>Data Tools</em> group. Click the <em>Data Validation</em> button and in the <em>Data Validation</em> window ensure that you&#8217;re working on the <em>Settings</em> tab.</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2010/11/dat-validation.gif"><img class="aligncenter size-full wp-image-386" title="Data Validation" src="http://www.excel-2010.com/wp-content/uploads/2010/11/dat-validation.gif" alt="Data Validation" width="186" height="144" /></a></p>
<p>In the <em>Allow</em> box select <em>List</em> and then enter the range of cells in the <em>Source</em> box. To get the range into the box, you can also click on the cell selector button and then drag over the cell range you need. Make sure that the range of cells is preceded by an equals sign like this: =$F$8:$F$13</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2010/11/data-validation.gif"><img class="aligncenter size-full wp-image-387" title="Data Validation" src="http://www.excel-2010.com/wp-content/uploads/2010/11/data-validation.gif" alt="Data Validation" width="406" height="323" /></a></p>
<p>Make sure that the <em>In-cell drop down</em> box is checked and if you want the user to be able to make a blank selection (i.e. leave it blank) then check the <em>Ignore blank</em> box.</p>
<p>If you want to display an informational message for the user when they make the drop down list cell active, go to the <em>Input Message</em> tab. Check the <em>Show input message when cell is selected</em> box. Then enter values for the title an input message itself.</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2010/11/input-message.gif"><img class="aligncenter size-full wp-image-388" title="Input Message" src="http://www.excel-2010.com/wp-content/uploads/2010/11/input-message.gif" alt="Input Message" width="406" height="323" /></a></p>
<p>If you want to display an error message after invalid data has been entered, click on the <em>Error Alert</em> tab. Ensure that the <em>Show error alert after invalid data is entered</em> box is checked and select the most appropriate <em>Style</em>:</p>
<ul>
<li>To display an information message that does not prevent entry of invalid data, select <em>Information</em>.</li>
<li>To display an information message that does not prevent entry of invalid data, select <em>Warning</em>.</li>
<li>To prevent the entry of invalid data, select <em>Stop</em>.</li>
</ul>
<p>Type in a title for the error message and also some descriptive text.</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2010/11/error-alert.gif"><img class="aligncenter size-full wp-image-389" title="Error Alert In Excel Drop Down List" src="http://www.excel-2010.com/wp-content/uploads/2010/11/error-alert.gif" alt="Error Alert In Excel Drop Down List" width="406" height="323" /></a></p>
<p>To remove a drop down list from a cell, make the cell active and then click to the <em>Data</em> tab. Go to the <em>Data</em> group and then click the <em>Data Validation</em> button. On the <em>Settings</em> tab, click the <em>Clear All</em> button at the bottom.</p>
<h2>Create A Drop Down List Using Static Values</h2>
<p>If you want a drop down list of static values that don&#8217;t change, and aren&#8217;t dependent on the contents of other cells, you can type in the values directly. Select the cell where you want the list to go and then click the <em>Data</em> tab and go to the <em>Data Tools</em> group. Click the <em>Data Validation</em> button and  in the <em>Data Validation</em> window ensure that you&#8217;re working on the <em> Settings</em> tab. In the <em>Allow</em> box select <em>List</em> and then type in the value you want to display in the list into the <em>Source</em> box. Separate the values with a comma. Review the steps above if you need to add any informational or error messages. Click OK when finished.</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2010/11/type-in-values.gif"><img class="aligncenter size-full wp-image-390" title="Type In List Values Directly" src="http://www.excel-2010.com/wp-content/uploads/2010/11/type-in-values.gif" alt="Type In List Values Directly" width="406" height="323" /></a></p>
<p>If you typed in an input message, it will be displayed when the cell becomes active, like this:</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2010/11/input-message-display.gif"><img class="aligncenter size-full wp-image-393" title="Input Message Display" src="http://www.excel-2010.com/wp-content/uploads/2010/11/input-message-display.gif" alt="Input Message Display" width="123" height="107" /></a></p>
<p>The user will need to click on the down arrow to display the drop down list, and then they can click on the entry they want to select it.</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2010/11/drop-down-list-display.gif"><img class="aligncenter size-full wp-image-398" title="Drop Down List Display" src="http://www.excel-2010.com/wp-content/uploads/2010/11/drop-down-list-display.gif" alt="Drop Down List Display" width="91" height="109" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.excel-2010.com/excel-drop-down-lists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Quick Access Toolbar In Excel 2010</title>
		<link>http://www.excel-2010.com/the-quick-access-toolbar-in-excel-2010/</link>
		<comments>http://www.excel-2010.com/the-quick-access-toolbar-in-excel-2010/#comments</comments>
		<pubDate>Wed, 10 Nov 2010 08:41:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[toolbar]]></category>

		<guid isPermaLink="false">http://www.excel-2010.com/?p=351</guid>
		<description><![CDATA[The quick access toolbar in Excel provides a selection of the more commonly used commands in one convenient place - the top left corner of the workspace (above the file tab).]]></description>
				<content:encoded><![CDATA[<p>The quick access toolbar in Excel provides a selection of the more commonly used commands in one convenient place &#8211; the top left corner of the workspace (above the file tab).</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2010/11/quick-access-toolbar-in-excel.gif"><img class="aligncenter size-full wp-image-353" title="The Quick Access Toolbar In Excel 2010" src="http://www.excel-2010.com/wp-content/uploads/2010/11/quick-access-toolbar-in-excel.gif" alt="The Quick Access Toolbar In Excel 2010" width="194" height="64" /></a></p>
<p>The beauty of the quick access toolbar is that it&#8217;s available whichever tab you&#8217;re using. By default, the toolbar contains the following commands, but you can add more:</p>
<ul>
<li>Save</li>
<li>Undo</li>
<li>Redo</li>
</ul>
<h2>Add Commands To The Quick Access Toolbar</h2>
<p>There are two different ways to add commands to the quick access toolbar. The first way involves using the <em>Customize Quick Access Toolbar</em> button, to the right of the toolbar. When we click that, we get this menu:</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2010/11/customize-quick-access-toolbar.gif"><img class="aligncenter size-full wp-image-354" title="Customize The Quick Access Toolbar In Excel" src="http://www.excel-2010.com/wp-content/uploads/2010/11/customize-quick-access-toolbar.gif" alt="Customize The Quick Access Toolbar In Excel" width="208" height="345" /></a></p>
<p>In this panel, we can see that the commands that already appear in the toolbar have a tick next to them. To add others, just select them one at a time by clicking on them. To remove one, click on it again to remove the tick. This menu displays only a small selection of the commands that are available for display on the quick access toolbar, though.</p>
<p>Any command you see on the ribbon can be added to the quick access toolbar, which brings us to the second method. Find the command on the ribbon that you want to add, right click on it and select <em>Add to Quick Access Toolbar</em>.</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2010/11/add-to-quick-access-toolbar.gif"><img class="aligncenter size-full wp-image-355" title="Add To Quick Access Toolbar" src="http://www.excel-2010.com/wp-content/uploads/2010/11/add-to-quick-access-toolbar.gif" alt="Add To Quick Access Toolbar" width="304" height="130" /></a><br />
For example, many people find that they use the <a href="http://www.excel-2010.com/excel-merge-and-center/">Merge &amp; Center</a> command all the time and it makes sense to have quick and easy access to it from any tab. Just add it to the quick access toolbar!</p>
<p>To remove it again, you can right click on the command in the toolbar and select <em>Remove from Quick Access Toolbar</em>.</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2010/11/remove-from-quick-access-toolbar.gif"><img class="aligncenter size-full wp-image-357" title="Remove From Quick Access Toolbar" src="http://www.excel-2010.com/wp-content/uploads/2010/11/remove-from-quick-access-toolbar.gif" alt="Remove From Quick Access Toolbar" width="304" height="130" /></a></p>
<p>There are other controls you can use on the quick access toolbar. For example, if you click on the <em>Customize Quick Access Toolbar </em>button (see above), you can choose to display it below the ribbon. But why on earth would you want to do that?? Another example of Microsoft providing a &#8220;feature&#8221; that has no benefit whatsoever, but hey we digress.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.excel-2010.com/the-quick-access-toolbar-in-excel-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Number Formatting In Excel</title>
		<link>http://www.excel-2010.com/number-formatting-in-excel/</link>
		<comments>http://www.excel-2010.com/number-formatting-in-excel/#comments</comments>
		<pubDate>Wed, 13 Oct 2010 20:22:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[formatting]]></category>
		<category><![CDATA[numbers]]></category>

		<guid isPermaLink="false">http://www.excel-2010.com/?p=338</guid>
		<description><![CDATA[Number formatting in Excel is the process of controlling the appearance of numbers in your spreadsheets. Formatting numbers appropriately will help your readers to read and understand them better. Questions you need to ask yourself when dealing with numbers in Excel include:]]></description>
				<content:encoded><![CDATA[<p>Number formatting in Excel is the process of controlling the appearance of numbers in your spreadsheets. Formatting numbers appropriately will help your readers to read and understand them better. Questions you need to ask yourself when dealing with numbers in Excel include:</p>
<ul>
<li>Do I need to include a currency symbol for amounts?</li>
<li>How many decimal places shall I display? That is, how accurate do the numbers need to be?</li>
<li>What format should dates be in, for example <strong>dd/mm/yy</strong>, or <strong>dd/mm/yyyy</strong> or <strong>mm/dd/yy</strong> etc</li>
</ul>
<p>All the number formatting commands are to be found on the <em>Home</em> tab in the <em>Number</em> group. Let&#8217;s format some numbers right now! Suppose we have a column of sales figures like this:</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2010/10/number-formatting-01.gif"><img class="aligncenter size-full wp-image-340" title="Number Formatting In Excel 2010" src="http://www.excel-2010.com/wp-content/uploads/2010/10/number-formatting-01.gif" alt="Number Formatting In Excel 2010" width="74" height="129" /></a></p>
<p>We can make these sales figures much more readable in just a few clicks. Select the column by clicking on its letter heading. Now click Home &gt; Number &gt; Number Format drop down selector. You should see the following number format options:</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2010/10/number-format-options.gif"><img class="aligncenter size-full wp-image-341" title="Number Format Options" src="http://www.excel-2010.com/wp-content/uploads/2010/10/number-format-options.gif" alt="Number Format Options" width="192" height="520" /></a></p>
<p>Select the <em>Currency</em> option and you should see the currency symbol that your region uses appear to the left of each number in the column. You should also see 2 decimal places appear.</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2010/10/currency-format.gif"><img class="aligncenter size-full wp-image-345" title="Currency Format In Excel" src="http://www.excel-2010.com/wp-content/uploads/2010/10/currency-format.gif" alt="Currency Format In Excel" width="80" height="129" /></a></p>
<p>You can tweak the number formatting, too, by clicking Home &gt; Number &gt; Number Format drop down selector, and then select <em>More Number Formats</em> at the bottom. The formatting of the currently selected cell(s) is initially shown in the <em>Format Cells</em> window, but you can change any aspect of it. Let&#8217;s change the number of decimal places to 0 for our sales figures.</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2010/10/change-currency-format.gif"><img class="aligncenter size-full wp-image-346" title="Change Currency Format" src="http://www.excel-2010.com/wp-content/uploads/2010/10/change-currency-format.gif" alt="Change Currency Format" width="522" height="469" /></a></p>
<p>There are lots and lots of different formatting options available in this window.</p>
<p>Note that any number formatting you apply affects only the value in the cell. The value displayed in the formula bar is <em>unformatted</em>.</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2010/10/formatting-in-excel-2010.gif"><img class="aligncenter size-full wp-image-347" title="Number Formatting In Excel 2010" src="http://www.excel-2010.com/wp-content/uploads/2010/10/formatting-in-excel-2010.gif" alt="Number Formatting In Excel 2010" width="210" height="97" /></a></p>
<h2>Formatting Dates In Excel</h2>
<p>Let&#8217;s have a quick look at how we can format dates in Excel. If you type in a value of &#8220;14/03/2011&#8243;, Excel will be able to recognise it as a date, and <em>Date</em> will be displayed in the <em>Number Format</em> selector. Note that dd/mm/yyyy is a typical date format used in the UK. If you want to change the date format to mm/dd/yy, for example, click Home &gt; Number &gt; Number Format (drop down selector) &gt; More Number Formats, and make the following changes:</p>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2010/10/date-formatting-in-excel.gif"><img class="aligncenter size-full wp-image-349" title="Date Formatting In Excel 2010" src="http://www.excel-2010.com/wp-content/uploads/2010/10/date-formatting-in-excel.gif" alt="Date Formatting In Excel 2010" width="522" height="469" /></a></p>
<p>As you can see, you can also have the name of the month displayed too: &#8220;14 March 2011&#8243;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.excel-2010.com/number-formatting-in-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Excel Training</title>
		<link>http://www.excel-2010.com/microsoft-excel-training/</link>
		<comments>http://www.excel-2010.com/microsoft-excel-training/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 19:24:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[online training]]></category>

		<guid isPermaLink="false">http://www.excel-2010.com/?p=331</guid>
		<description><![CDATA[Lynda.com offer a range of high quality and professionaly produced Microsoft Excel Training videos. You can sign up in a matter of minutes and take advantage of the following benefits:]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.lynda.com/Office2010/?utm_medium=affiliate&amp;utm_source=ldc_affiliate&amp;utm_content=710&amp;utm_campaign=CD1505&amp;bid=710&amp;aid=CD1505&amp;opt="><img class="aligncenter size-full wp-image-904" title="Microsoft Office Online Training" src="http://www.excel-2010.com/wp-content/uploads/2010/08/excel-2010-lynda.jpg" alt="Microsoft Excel Training" width="291" height="250" /></a></p>
<p>Lynda.com offer a range of high quality and professionaly produced <a href="http://www.lynda.com/Office2010/?utm_medium=affiliate&amp;utm_source=ldc_affiliate&amp;utm_content=710&amp;utm_campaign=CD1505&amp;bid=710&amp;aid=CD1505&amp;opt=">Microsoft Excel Training</a> videos. You can sign up in a matter of minutes and take advantage of the following benefits:</p>
<ul>
<li>easy to follow tutorials</li>
<li>knowledgeable presenters with sexy voices</li>
<li>low monthly subscription ($25/month) <span style="text-decoration: underline;">or</span> buy the DVD you want</li>
<li>unlimited access to a large collection of videos</li>
<li>every Microsoft Office 2010 program taught &#8211; not just Excel. In fact, <em>many</em> subjects &#8211; not just Office &#8211; catered for!</li>
<li>older versions of Excel (e.g. 2007) covered, too</li>
</ul>
<p>Watching video tutorials is a fantastic way to learn how to use Microsoft Excel. You can progress at your own pace and pause or rewind when you need to. The advantage that videos have over written tutorials is that you get to see the trainer performing an action <em>all the way through</em>. Although written tutorials do include screenshots, they are often only displayed at key points. If the written explanation of how to perform a particular task is complicated, the reader may get lost very easily.</p>
<p>Not so with video tutorials. The viewer can see quite clearly how the trainer completes each task.</p>
<p>With software products like Microsoft Excel, video tutorials come into their own. Video is not a good medium for subjects such as learning German, or applied mechanics, but for Excel they are ideal. Using Excel involves mouse movements and navigation of a busy interface called the Ribbon. Therefore, it&#8217;s important for the student to be able to see precisely what the presenter is doing in the spreadsheet.</p>
<p>Most of the better videos include helpful techniques like zooms and pans (zooming in on a smaller section of the screen helps to focus on areas of activity), highlighted mouse clicks so that you know when the presenter does something and supportive text that appears on the screen at opportune moments.</p>
<p><a href="http://www.lynda.com/Office2010/?utm_medium=affiliate&amp;utm_source=ldc_affiliate&amp;utm_content=710&amp;utm_campaign=CD1505&amp;bid=710&amp;aid=CD1505&amp;opt=">Sign up now for unlimited access</a> to a huge selection of titles in a variety of subjects &#8211; for $25/month.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.excel-2010.com/microsoft-excel-training/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel Save As PDF</title>
		<link>http://www.excel-2010.com/excel-save-as-pdf/</link>
		<comments>http://www.excel-2010.com/excel-save-as-pdf/#comments</comments>
		<pubDate>Thu, 09 Sep 2010 07:11:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[PDF]]></category>
		<category><![CDATA[save]]></category>

		<guid isPermaLink="false">http://www.excel-2010.com/?p=290</guid>
		<description><![CDATA[Many people prefer the way that an Adobe PDF (Portable Document Format) document presents information to the way that a standard spreadsheet looks. Whereas in the past you needed to download and  install a special add in to save a spreadsheet as a PDF (for example,  the Microsoft Office 2007 Save as PDF Add-in), Excel 2010 comes with this facility by default.]]></description>
				<content:encoded><![CDATA[<p>Many people prefer the way that an Adobe PDF (Portable Document Format) document presents information to the way that a standard spreadsheet looks. Whereas in the past you needed to download and  install a special add in to save a spreadsheet as a PDF (for example,  the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=f1fc413c-6d89-4f15-991b-63b07ba5f2e5&amp;displaylang=en">Microsoft Office 2007 Save as PDF Add-in</a>), Excel 2010 comes with this facility by default.</p>
<p>To save as a PDF, click the File tab &gt; Save As, and then give the document a name. Change the Save as type selection to be <em>PDF (*.pdf)</em>.</p>
<div id="attachment_328" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.excel-2010.com/wp-content/uploads/2010/09/excel-save-as-pdf.gif"><img class="size-medium wp-image-328" title="Excel Save As PDF" src="http://www.excel-2010.com/wp-content/uploads/2010/09/excel-save-as-pdf-300x257.gif" alt="Excel Save As PDF" width="300" height="257" /></a><p class="wp-caption-text">Click to enlarge</p></div>
<p>When you do this, additional options appear on the <em>Save As</em> window.</p>
<p>Here is an explanation of what each one does:</p>
<ul>
<li>Optimise For &#8211; <strong>Standard (publishing online and printing)</strong> is the option that you would usually use, but if you needed to reduce the amount of space the PDF took up on disc, then you could select <strong>Minimum size (publishing online)</strong>. As with most options that reduce file size, an accompanying degradation in quality should be expected.</li>
<li>Options &#8211; when you click on the options button, a window is displayed that looks a little like the one you see when adjusting printing options (see below). Here, you can select what pages and what worksheets you want to be included in the PDF.</li>
</ul>
<p><a href="http://www.excel-2010.com/wp-content/uploads/2010/09/save-as-pdf-options.gif"><img class="aligncenter size-full wp-image-329" title="Save As PDF Options" src="http://www.excel-2010.com/wp-content/uploads/2010/09/save-as-pdf-options.gif" alt="Save As PDF Options" width="282" height="321" /></a></p>
<p>To illustrate, <a href="http://www.excel-2010.com/wp-content/uploads/2010/09/countries.xlsx">here is a worksheet</a> that contains data about which countries visitors to this site live in. This is what the document looks like when <a href="http://www.excel-2010.com/wp-content/uploads/2010/09/countries.pdf">saved as a PDF</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.excel-2010.com/excel-save-as-pdf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.190 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-06-18 22:42:39 -->
