<?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>Ampercent &#187; Office Tips</title> <atom:link href="http://www.ampercent.com/tag/office-tips/feed/" rel="self" type="application/rss+xml" /><link>http://www.ampercent.com</link> <description></description> <lastBuildDate>Wed, 08 Feb 2012 12:24:08 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/><xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>How to Use the Excel VLOOKUP Function for a Range of Unknown Size</title><link>http://www.ampercent.com/use-excel-vlookup-function-unknown-range/8515/</link> <comments>http://www.ampercent.com/use-excel-vlookup-function-unknown-range/8515/#comments</comments> <pubDate>Wed, 23 Feb 2011 18:10:26 +0000</pubDate> <dc:creator>guest</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Excel]]></category> <category><![CDATA[Feature]]></category> <category><![CDATA[Office Tips]]></category><guid isPermaLink="false">http://www.ampercent.com/?p=8515</guid> <description><![CDATA[<p>This is a guest article from Yoav Ezer. If you want to guest post on this blog, check out the guidelines here. VLOOKUP is a super-useful Microsoft Excel function. It allows you to bring in data from another sheet related to the data you are entering. It speeds up data entry while also cutting down [...]</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/use-excel-vlookup-function-unknown-range/8515/">How to Use the Excel VLOOKUP Function for a Range of Unknown Size</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></description> <content:encoded><![CDATA[<p><em>This is a guest article from Yoav Ezer. If you want to guest post on this blog, <a href="http://www.ampercent.com/guest-blogging/">check out the guidelines here.</a></em></p><p>VLOOKUP is a super-useful <a title="7 Excel ‘If’ Function Techniques You Need to Know" href="http://www.ampercent.com/advanced-excel-if-formulas/6245/">Microsoft Excel function</a>. It allows you to bring in data from another sheet related to the data you are entering. It speeds up data entry while also cutting down on errors.</p><p>This is fine if your master list is fixed, but the problem is the sheet you are drawing from might be growing or shrinking.</p><p>Take this example where we have a list of products. This sheet contains all the products we stock so that in another sheet when we enter a product ID we can draw in the Product Name and Price automagically.</p><p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px; border: 0px;" title="price-automagically" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/0c7b4b63e2a1_14A6B/price-automagically.png" border="0" alt="price-automagically" width="457" height="166" /><br /> If these are the only products we will ever stock, or if the catalogue only grows very occasionally, then that is ok. We can edit the sheets and formulas as and when required. But what if we are adding new products often?</p><p>Thankfully there is a smart way that we can still use VLOOKUP but with a dynamic range. How do we do that? Read on&#8230;</p><h3>VLOOKUP with Named Ranges</h3><p>Ordinarily when we use <a href="http://office.microsoft.com/en-us/excel-help/vlookup-HP005209335.aspx">VLOOKUP</a> we specify a precise range, such as =VLOOKUP(A2,A2:C10,3) where the range is from A2 to C10. Obviously if we were to add a new product we would need to make it C11 and so on, every time our product list changed.</p><p>The first step in simplifying this is to instead use a &#8220;named range&#8221;. So rather than A2:C10 we would use the name &#8220;product&#8221;.</p><p>Select the area of cells that you wish to name and click Define Name in the Name Manager.</p><p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px; border: 0px;" title="name-manager" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/0c7b4b63e2a1_14A6B/name-manager.png" border="0" alt="name-manager" width="528" height="242" /></p><p>Then supply the name you wish to use, checking that the range is correct.</p><p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px; border: 0px;" title="range-is-correct" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/0c7b4b63e2a1_14A6B/range-is-correct.png" border="0" alt="range-is-correct" width="350" height="255" /></p><p>This approach now transforms our VLOOKUP to look like VLOOKUP(A2,Product,3) etc. Changing the range then would be simply done centrally in the Name Manager.</p><h3>Dynamic Named Ranges</h3><p>We don&#8217;t want to have to keep going into Name Manager though. Ideally we want it to &#8220;self correct&#8221; and just work. The good news is a solution does exist.</p><p>When we create the named range, instead of a straight forward range, instead we use a formula.</p><p>=OFFSET(&#8216;Product List&#8217;!$A$1,1,0,COUNTA(&#8216;Product List&#8217;!$A:$A)-1,3)<br /> The OFFSET function asks for a row count, but we can even dynamically supply this by using the COUNTA function. Any time we add products this count will increase, giving us our dynamic range.</p><p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px; border: 0px;" title="dynamic-range" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/0c7b4b63e2a1_14A6B/dynamic-range.png" border="0" alt="dynamic-range" width="564" height="248" /></p><h3>Summary</h3><p>A standard VLOOKUP is a great way to speed up your data entry but requires you to edit your formulas or at least the named ranges. Making your named ranges dynamic by using a formula to select the range allows you to focus purely on the data entry, leaving Excel to worry about where your lookups are pointing.</p><p><em>About the author: Yoav Ezer co-authors the technology and productivity blog Codswallop. He is also the CEO of a company that produces </em><a href="http://www.cogniview.com/pdf2xl.php"><em>PDF to Excel</em></a><em> conversion software. For more Excel tips from Yoav, join him on </em><a rel="nofollow" href="http://www.facebook.com/Cogniview.Codswallop"><em>Facebook</em></a><em> or </em><a rel="nofollow" href="http://twitter.com/#!/cogniview"><em>Twitter</em></a></p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/use-excel-vlookup-function-unknown-range/8515/">How to Use the Excel VLOOKUP Function for a Range of Unknown Size</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></content:encoded> <wfw:commentRss></wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>ZohoViewer Lets You View And Convert Office Documents Without Any Signups</title><link>http://www.ampercent.com/convert-office-documents-online/7781/</link> <comments>http://www.ampercent.com/convert-office-documents-online/7781/#comments</comments> <pubDate>Tue, 11 Jan 2011 04:08:41 +0000</pubDate> <dc:creator>Amit Banerjee</dc:creator> <category><![CDATA[Internet]]></category> <category><![CDATA[Feature]]></category> <category><![CDATA[Office Tips]]></category> <category><![CDATA[Web Tools]]></category><guid isPermaLink="false">http://www.ampercent.com/?p=7781</guid> <description><![CDATA[<p>Zoho Viewer lets you upload and publish Office documents online, without having to register for any account. The published documents are not private and you may define an age of up to 1 year, after which the documents will be automatically deleted from Zoho's servers</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/convert-office-documents-online/7781/">ZohoViewer Lets You View And Convert Office Documents Without Any Signups</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></description> <content:encoded><![CDATA[<p>When it comes to creating, converting, sharing or managing office documents &#8211; I always use Google Docs.</p><p>But not when I am <a href="http://www.ampercent.com/prevent-email-hacking-keyloggers/2802/">surfing on a public computer</a>, or using the shared computer of a friend or using an <a href="http://www.ampercent.com/protect-login-information-firesheep-public-wifi-networks/7424/">unprotected Wi -Fi connection</a>.</p><p>If you are like me and never use your email and Google Docs credentials on a public computer, try <a href="http://viewer.zoho.com/">Zoho&#8217;s Online document viewer and converter</a>.</p><p><img class="aligncenter" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/online-document-converter.png" alt="Online Document Viewer and Converter" width="575" height="268" /></p><h3>ZohoViewer: Online Document Viewer And Converter</h3><p>Zoho Viewer lets you upload and publish Office documents online, without having to register for any account. The published documents are <strong>not private</strong> and you may define an age of up to 1 year, after which the documents will be automatically deleted from Zoho&#8217;s servers ( the other options being 1 day, 1 week, 1 month, 3 months and so on).</p><p>When you are done uploading the document(s), Zoho opens the  document in your browser so that you can read it, share it, print it and  do other productive things.</p><p><img class="aligncenter" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/zoho-online-document-manager.png" alt="Online document converter" width="575" height="260" /></p><p>Zoho Viewer also provides a neat short URL for the uploaded document and also allows you to <a href="http://www.ampercent.com/embed-excel-spreadsheet-webpage/6833/">embed the document in any HTML webpage</a>. Should you need to convert the uploaded document to any of it&#8217;s sister format, simply click through the &#8220;Export&#8221; link and choose the output format of the published document.</p><p><strong>For example:</strong> You may want to convert a Word document to Open document text or to RTF format. There is no need to download any document converter, just use Zoho Viewer and convert office documents to compatible formats.</p><p><img class="aligncenter" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/convert-documents-online.png" alt="Convert Office Documents Online With Zoho Viewer" width="439" height="190" /></p><p>The only thing <strong>missing</strong> in Zoho Viewer is the ability to password protect any uploaded document so that anyone who has the link is unable to edit it or permanently delete it from Zoho&#8217;s server&#8217;s. But considering all the other features of Zoho&#8217;s online document viewer and converter, I think it outperforms Google Docs, Docs.com, Windows Live Skydrive and other office online suites.</p><p>Note: A similar website is <a href="http://www.zamzar.com/">Zamzar.com</a> which works with Mp3&#8242;s, Videos, Ebook&#8217;s, PDF&#8217;s as well as Zipped archives.</p><p>Do you know any better online document converter that does not require any registrations, is ad free and provides sharing and embedding facilities? Shoot your ideas and links in the comments below.</p><p>Related: <a href="http://www.ampercent.com/convert-pdf-dpcuments-to-powerpoint-presentations/5900/">Convert PDF documents to PowerPoint presentations</a></p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/convert-office-documents-online/7781/">ZohoViewer Lets You View And Convert Office Documents Without Any Signups</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></content:encoded> <wfw:commentRss></wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Remove Duplicate Values In An Excel Spreadeet Using Filters And Conditional Formatting</title><link>http://www.ampercent.com/remove-duplicate-values-excel/7769/</link> <comments>http://www.ampercent.com/remove-duplicate-values-excel/7769/#comments</comments> <pubDate>Sat, 08 Jan 2011 10:31:15 +0000</pubDate> <dc:creator>Amit Banerjee</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Best]]></category> <category><![CDATA[Excel]]></category> <category><![CDATA[Feature]]></category> <category><![CDATA[Office Tips]]></category> <category><![CDATA[Tricks and Tutorials]]></category><guid isPermaLink="false">http://www.ampercent.com/?p=7769</guid> <description><![CDATA[<p>This tutorial shows how you can remove duplicate values from an excel row or column using custom filters and Excel's conditional formatting. The conditional formatting can be applied to Google Docs documents too.</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/remove-duplicate-values-excel/7769/">Remove Duplicate Values In An Excel Spreadeet Using Filters And Conditional Formatting</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></description> <content:encoded><![CDATA[<p>When you work with a large list of data in an excel spreadsheet, chances are that some of the cells may contain duplicate sets of data. You may want to remove duplicates values in Excel and keep the unique values in a particular cell or column.</p><p>In this short tutorial, we will learn how you can remove duplicate entries in an excel column or row, using a simple data filter.</p><h3>Remove Duplicate Data In an Excel Row Or Column</h3><p>1. Open the Excel spreadsheet and highlight the row or column whose values you want to check. You have to click the top of the column in order to select the entire column; should you want to select only specific cells, simply drag the mouse cursor to create a selection.</p><p>2. When you are done selecting the cells from which the duplicate entries are to be removed, highlight the &#8220;Data&#8221; tab, as shown below:</p><p><img class="aligncenter" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/remove-duplicates-excel-row-column.png" alt="Remove Duplicate Values From An Excel Row Or Column" width="480" height="383" /><br /> 3.  Now hit the &#8220;Remove Duplicates&#8221; button and Excel will automatically delete all the duplicate entries from your selection.</p><p><img class="aligncenter" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/delete-duplicates-excel.png" alt="Delete duplicate entries from Excel cells" width="550" height="225" /></p><p>Microsoft Office will further show you a confirmation message like this:</p><p><img class="aligncenter" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/duplicate-values-removed.png" alt="Remove repeating data in Excel rows and columns" width="397" height="112" /></p><p>The above message is shown when Excel finds that there are 3 instances of the same data spread across different cells. Among the 3 instances of the repeating data, Excel will remove 2 duplicate entries while keeping only one instance of the data in the selected row or column.</p><p>The above trick works for as many duplicate sets you might have in a specific cell or column. If you want to scan the entire spreadsheet for duplicate values, hit &#8220;Control + A&#8221;, switch to the &#8220;Data&#8221; tab and select &#8220;Remove Duplicate Entries&#8221;.</p><h3>Highlighting Duplicate Values And Manually Deleting Them Using Conditional Formatting</h3><p>There may be situations when you might want to manually delete the duplicate entries one by one. The question is: How do you highlight the duplicate values in an excel row or column ? How can we easily sort the duplicate entries and then check each of them one by one ?</p><p>This can be easily achieved using Excel conditional formatting, as described below:</p><p>1. Select the row or column where you want to filter the duplicate entries. If you want to select the entire spreadsheet, hit &#8220;Control + A&#8221;</p><p>2. Switch to the &#8220;Home&#8221; tab and click &#8220;Conditional formatting &gt;Highlight cell rules &gt; Equal to&#8221;</p><p><img class="aligncenter" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/excel-conditional-formatting.png" alt="Excel Conditional formatting - remove duplicate values" width="560" height="289" /></p><p>3. Next, enter the exact value which you want to filter or highlight in the chosen row. If you are not sure regarding the duplicates values that are to be filtered out, first run a &#8220;Duplicate value&#8221; check as described earlier in the article.</p><p><img class="aligncenter" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/filtering-duplicate-entries.png" alt="Filter duplicate excel values" width="550" height="248" />4. As soon as you enter the value in the conditional formatting window, Excel will automatically highlight the redundant entries. Now you can manually remove them in any order of your choice.</p><h3>Remove Duplicate Values From A Google Docs Spreadsheet</h3><p>If you are like me and use Google Docs spreadsheets a lot for managing accounts, drawing charts &#8211; you might want to learn how to remove duplicate values from a Google Docs spreadsheet.</p><p>Google Docs does not supports filtering values using Logical functions, but you can still borrow some help from Excel&#8217;s conditional formatting. What this means is that you can apply conditional formatting in a Google Docs spreadsheet and filter duplicate values in any row or column.</p><p>1. Select the entire row or column where you want to filter the duplicate values. You may also select specific cells using a manual selection (dragging).</p><p>2. Click the small arrow icon over the column, as shown below:</p><p><img class="aligncenter" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/filtering-duplicate-values-google-docs.png" alt="Remove Duplicate values from a Google Docs spreadsheet" width="570" height="216" /><br /> 3.  This will open the conditional formatting window where you can add multiple rules for that particular row or column.</p><p>4. To highlight all the duplicate values in the selected row or column, choose &#8220;Is equal to&#8221; and then enter the value and choose a background.</p><p>5. Save your rule and voila ! Google Docs will now highlight all the duplicate entries in the chosen row or column.</p><p><img class="aligncenter" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/remove-duplicate-values-google-docs1.png" alt="Remove Duplicate Excel Values From Google Docs spreadsheet" width="399" height="320" /><br /> Unfortunately, there is no automatic way to delete all the duplicate entries in one shot. However, you can use Google Doc&#8217;s conditional formatting to highlight the redundant entries and then manually delete the duplicates.</p><p>These are two simplest ways to find duplicate entries in Excel spreadsheet, you may write your own Excel functions to remove duplicate values from a spreadsheet depending upon your requirements or rules.</p><p>Know any excel tip which you want to share with fellow readers? Let us know your thoughts and ideas in the comments.</p><p>More tips on Microsoft Excel:</p><p>1. <a title="Permanent Link: Use Macros To Detect The Formatting Properties Of A Cell In An Excel Spreadsheet" rel="bookmark" href="../../apply-excel-cell-formatting-rules-macros/7631/">Use Macros to detect the formatting properties of a cell<br /> </a>2. <a href="http://www.ampercent.com/open-excel-document-without-excel/2765/">Open Excel spreadsheets without Excel</a></p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/remove-duplicate-values-excel/7769/">Remove Duplicate Values In An Excel Spreadeet Using Filters And Conditional Formatting</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></content:encoded> <wfw:commentRss></wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Use Macros To Detect The Formatting Properties Of A Cell In An Excel Spreadsheet</title><link>http://www.ampercent.com/apply-excel-cell-formatting-rules-macros/7631/</link> <comments>http://www.ampercent.com/apply-excel-cell-formatting-rules-macros/7631/#comments</comments> <pubDate>Mon, 20 Dec 2010 16:25:13 +0000</pubDate> <dc:creator>guest</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Feature]]></category> <category><![CDATA[Ms-Excel]]></category> <category><![CDATA[Office Tips]]></category><guid isPermaLink="false">http://www.ampercent.com/?p=7631</guid> <description><![CDATA[<p>When you enter values into a cell, you may have seen that the text flows into neighboring cells. Of course you can reformat the cell, stretch it, or turn on wrapping, but what if you could automatically resize the font of an Excel cell so it always fits?</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/apply-excel-cell-formatting-rules-macros/7631/">Use Macros To Detect The Formatting Properties Of A Cell In An Excel Spreadsheet</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></description> <content:encoded><![CDATA[<p><em>This is a guest article from Yoav Ezer. If you want to guest post on this blog, <a href="../../guest-blogging/">check out the guidelines here.</a></em></p><p>Have you ever wanted to write a macro that interacts with your spreadsheets formatting rather than the actual values? Perhaps automatically change font, borders or colors decided by your programming logic.</p><p>Let&#8217;s work on an example.</p><p>When you enter values into a cell, you may have seen that the text flows into neighboring cells. Of course you can reformat the cell, stretch it, or turn on wrapping, but what if you could automatically resize the font of an Excel cell so it always fits?</p><p>Here is a clever macro script that resizes a cell&#8217;s contents on demand and demonstrates how you can <strong>programmatically apply formatting based on macros rules</strong>.</p><p>If you type into a cell then hit the keyboard combination specified (in this case Ctrl-W), the font is automatically altered to ensure the text fits.</p><p>The properties we are working with here are simple: the font.size, the text alignment; .HorizontalAlignment and .VerticalAlignment, but there are many others to check out.</p><p>In the macro options we set the keyboard combination in the usual way:</p><h3>The Macro</h3><p>How it works is the height of the active cell is checked against a variable we created called &#8220;RowElement&#8221;. If the height is different, we left align and vertically center the contents of the cell. The macro then checks to see if the height is less than or equal to 30 and proceeds to set the font size to the height minus 4 and set the RowElement to this value plus 1.</p><p>If the height is greater than 30 then the size is set to the height + 10.</p><h3>Summary</h3><p>You might wonder how often this macro would be used on a day to day basis but it does demonstrate how you can use macros to detect the formatting properties of cells and elements, and apply formatting automatically based on those results.</p><p>How might you apply this functionality to your work?</p><p><em>About the author : Yoav Ezer co-authors the technology and productivity blog Codswallop. He is also the CEO of a company that produces <a href="http://www.cogniview.com/pdf2xl.php">PDF to Excel conversion software</a>. For more Excel tips from Yoav, join him on <a rel="nofollow" href="http://www.facebook.com/Cogniview.Codswallop">Facebook</a> or Twitter</em></p><p>Yoav has contributed a couple of more Excel tips to this site, you   can click through the following links and read Yoav&#8217;s earlier articles:</p><p>1. <a href="../../advanced-excel-if-formulas/6245/">Advanced Excel If Formulas and Functions</a><br /> 2. <a href="../../excel-date-formalas-tips/6223/">How to Work with Date Functions in Excel spreadsheet</a><br /> 3. <a href="../../create-powerpoint-charts-from-excel-data/6134/">How to create PowerPoint charts from an Excel Data set</a>.</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/apply-excel-cell-formatting-rules-macros/7631/">Use Macros To Detect The Formatting Properties Of A Cell In An Excel Spreadsheet</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></content:encoded> <wfw:commentRss></wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Create Or Edit Windows Live Skydrive Documents From Microsoft Office</title><link>http://www.ampercent.com/create-edit-windows-live-skydrive-documents-microsoft-office/7416/</link> <comments>http://www.ampercent.com/create-edit-windows-live-skydrive-documents-microsoft-office/7416/#comments</comments> <pubDate>Fri, 26 Nov 2010 16:10:54 +0000</pubDate> <dc:creator>Amit Banerjee</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Feature]]></category> <category><![CDATA[Office Tips]]></category> <category><![CDATA[Windows Live Skydrive]]></category><guid isPermaLink="false">http://www.ampercent.com/?p=7416</guid> <description><![CDATA[<p>Here is a Microsoft Office add-in which allows you to create and edit Office documents that are stored in your Live Skydrive account.</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/create-edit-windows-live-skydrive-documents-microsoft-office/7416/">Create Or Edit Windows Live Skydrive Documents From Microsoft Office</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></description> <content:encoded><![CDATA[<p><a rel="nofollow" href="http://skydrive.live.com">Windows live skydrive</a> is one of the best online services for backing up files, images, documents etc to the cloud. The service offers a hefty 25 GB of free online storage and is provided by Microsoft to all users who have a Windows live ID.</p><p>Apart from storing regular files, Skydrive has a very good document processor which allows you to create Word documents, Excel spreadsheets and PowerPoint presentations directly from the browser. These documents are stored in your Live Skydrive account and can be shared with anyone, apart from allowing other collaborative features (just like Google Docs).</p><p>If you want to create or edit documents stored in Windows Live Skydrive account directly from Microsoft Office, here is a free office add-in which will help.</p><p><strong><a href="http://madeforit.com/our-projects/office-live-files">Office Live Files</a></strong> lets you sign in to your Skydrive account directly from Microsoft office. After the add-in is installed, switch to the &#8220;Office Live Files&#8221; tab and sign in with your Windows live account. You would then be able to browse to any Skydrive folder and upload any file, not just office documents. (see example)</p><p><img class="aligncenter" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/access-skydrive-documents-office.png" alt="Edit Skydrive documents from Microsoft office" width="549" height="387" /></p><p>The impressive part regarding the add-in is that you can load any document from Skydrive, directly in the Microsoft Office interface. Then the document can be edited as usual. When you are done editing the document, the changes will be synced to the document that&#8217;s stored in your Live Skydrive account. Impressive !</p><p>Note: You will see a warning message e.g &#8220;This file originated from an internet location and might be unsafe&#8221;. Ignore the message and hit &#8220;Enable Editing&#8221; to start editing the document.</p><p><img class="aligncenter" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/edit-skydrive-documents-desktop.png" alt="Edit Skydrive Documents From Desktop in Microsoft Office" width="500" height="263" /></p><p>The advantage of using Office Live add-in is that you don&#8217;t have to fire up a web browser, just to edit a document from your Skydrive account. You can edit any Live Skydrive document directly from desktop.</p><p>Office Live add-in Works with Office 2007, office 2010 and earlier versions of Microsoft Office. Give it a try !</p><p>Tip: If you are a Google Docs fan, check out our earlier tutorial on <a href="http://www.ampercent.com/use-microsoft-office-to-create-and-edit-google-docs-documents-offline/5795/">creating and editing Google Docs documents from Microsoft Office</a></p><p>[ <a href="http://www.addictivetips.com/microsoft-office/manage-windows-live-skydrive-document-files-from-ms-office-2010-2007/">via</a> ]</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/create-edit-windows-live-skydrive-documents-microsoft-office/7416/">Create Or Edit Windows Live Skydrive Documents From Microsoft Office</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></content:encoded> <wfw:commentRss></wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Create 3D Animated Charts In PowerPoint With Oomfo</title><link>http://www.ampercent.com/3d-animated-charts-powerpoint/6974/</link> <comments>http://www.ampercent.com/3d-animated-charts-powerpoint/6974/#comments</comments> <pubDate>Sun, 10 Oct 2010 07:42:59 +0000</pubDate> <dc:creator>Amit Banerjee</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Feature]]></category> <category><![CDATA[Office Tips]]></category> <category><![CDATA[Powerpoint]]></category><guid isPermaLink="false">http://www.ampercent.com/?p=6974</guid> <description><![CDATA[<p>Microsoft PowerPoint has a built in feature to create pie charts and bar graphs from a set of data. This involves keying in the values of different metrics of the  chart and choosing the chart type from Insert &#62;Edit Chart. But creating 3D charts in PowerPoint and beautifying them takes a lot of time. Novice [...]</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/3d-animated-charts-powerpoint/6974/">Create 3D Animated Charts In PowerPoint With Oomfo</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></description> <content:encoded><![CDATA[<p>Microsoft PowerPoint has a built in feature to create pie charts and bar graphs from a set of data. This involves keying in the values of different metrics of the  chart and choosing the chart type from Insert &gt;Edit Chart.</p><p>But creating 3D charts in PowerPoint and beautifying them takes a lot of time. Novice users either don&#8217;t have the expertise or lack the time needed to create a chart in PowerPoint.</p><p>Then there are some web based tools which allows you to<a href="http://www.ampercent.com/create-pie-charts-bar-graphs-venn-diagrams-online/1820/"> create pie charts</a>, ven diagrams or bar graphs but the problem with these tools is the data associated with the chart. When you want to modify the chart at a later point of time, you have to start all over from scratch, which can be very time consuming. Google Docs is a <a href="http://www.ampercent.com/create-charts-with-google-docs/5571/">good alternative</a> as far as organizing the data of the chart is concerned, but you are not able to create animated or 3D charts in Google Docs presentations.</p><p>That&#8217;s where <strong><a href="http://oomfo.com/">oomfo</a></strong> fits in perfectly. It&#8217;s a free add-in for Microsoft Powerpoint which allows you to create beautiful single series, multi series, combination and stacked charts in no time. Once the add-in is installed, you can follow a simple wizard and add the chart to any of your presentation slides.</p><p><img class="aligncenter" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/create-3d-charts-powerpoint.png" alt="CReate 3D charts in Powerpoint" width="500" height="343" /></p><p>The default charting tool of PowerPoint is Microsoft Graph which creates charts in bitmap image formats. Unlike this, oomfo charts uses your computers flash player to create animated or 3D charts for PowerPoint. Using oomfo, you can also define how the charts are animated, choose different themes and also export data from an excel spreadsheet.</p><p>To see oomfo in action, watch the video demonstration below:</p><p style="text-align: center;"><p><a href="http://www.youtube.com/watch?v=RyL7wH7jC7Q">http://www.youtube.com/watch?v=RyL7wH7jC7Q</a></p></p><p>oomfo supports PowerPoint 2003, PowerPoint 2007 and the latest Powerpoint 2010. Thanks <a href="http://www.instantfundas.com/2010/10/add-animated-interactive-charts-and.html">Kaushik</a></p><p>Related: <a href="http://www.ampercent.com/create-powerpoint-charts-from-excel-data/6134/">Create PowerPoint charts from an Excel data set</a></p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/3d-animated-charts-powerpoint/6974/">Create 3D Animated Charts In PowerPoint With Oomfo</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></content:encoded> <wfw:commentRss></wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How to Embed An Excel SpreadSheet In a Webpage</title><link>http://www.ampercent.com/embed-excel-spreadsheet-webpage/6833/</link> <comments>http://www.ampercent.com/embed-excel-spreadsheet-webpage/6833/#comments</comments> <pubDate>Fri, 24 Sep 2010 13:43:29 +0000</pubDate> <dc:creator>Amit Banerjee</dc:creator> <category><![CDATA[Internet]]></category> <category><![CDATA[Feature]]></category> <category><![CDATA[Google Docs]]></category> <category><![CDATA[Office Tips]]></category> <category><![CDATA[Software]]></category><guid isPermaLink="false">http://www.ampercent.com/?p=6833</guid> <description><![CDATA[<p>This tutorial will walk you through the steps to embed an excel spreadsheet in any HTML webpage or in the source of your blog posts.</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/embed-excel-spreadsheet-webpage/6833/">How to Embed An Excel SpreadSheet In a Webpage</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></description> <content:encoded><![CDATA[<p>Office documents cannot be directly embedded in an HTML webpage or in a blog post unless of course you are using an iframe tag to call the document. Instead you can use Windows live skydrive to upload an excel spreadsheet and embed the spreadsheet in an HTML webpage or in the source of your blog post.</p><p>The idea is something like this &#8211; create a new spreadsheet and store it in the public folder of your skydrive account. Then copy and paste a simple HTML code and the spreadsheet is embedded in your website. The advantage of using Windows live skydrive is that if you change the content or data of any of the cells later, the change will be automatically reflected in the spreadsheet, embedded in your website.</p><p>Following are the steps involved to embed an excel spreadsheet in an HTML webpage:</p><p>1. Sign in to <a href="http://office.live.com/fatalerror.html">http://office.live.com</a> with your Windows live ID</p><p>2. Go to the public folder and upload the spreadsheet(s).</p><p style="text-align: center;"><img class=" aligncenter" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/embed-spreadsheets.png" alt="Embed an Excel Spreadsheet in HTML webpage" width="500" height="258" /></p><p>3. Open the workbook for editing and click the &#8220;Share&#8221; dropdown. Then choose &#8220;Embed&#8221; as shown below:</p><p><img class="aligncenter" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/embed-spreadsheets1.png" alt="Embed spreadsheets in a webpage" width="550" height="275" />4. Done !</p><p>Here is an example spreadsheet embedded using office Live skydrive</p><p><iframe src="http://r.office.microsoft.com/r/rlidExcelEmbed?su=-706334190424026013&#038;Fi=SDF63298CBCF101463!2337&#038;AllowInteractivity=False" width="402" height="346" frameborder="0" scrolling="no"></iframe></p><p>The same is also true for Word documents or PowerPoint presentations but <a href="http://www.scribd.com">Scribd</a> and <a href="http://www.slideshare.net">Slideshare</a> are strong alternatives for embedding PowerPoint presentations or Word documents in a webpage, so there is no need to use Office Skydrive for the same.</p><h3>How to Embed a Google Docs Spreadsheet in a Webpage</h3><p>Embedding a Google Docs spreadsheet is also easily achieved, though the output of Wndows live skydrive is much better. Following are the steps involved:</p><p>1. Open the Google Docs spreadsheet in a browser, click &#8220;Share&#8221; and click &#8220;Publish as a webpage&#8221;</p><p><img class="aligncenter" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/embed-google-docs-spreadsheet.png" alt="Embed Google Docs Spreadsheet in a webpage" width="353" height="180" /><br /> 2. Then copy the public link of the Google Docs spreadsheet as shown below:</p><p><img class="aligncenter" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/embed-google-docs-spreadsheet1.png" alt="Embed Google Docs Spreadsheet in HTMl website" width="512" height="292" />3. Use the following code to embed the spreadsheet in any HTML webpage:</p><div class="code">&lt;iframe src=&#8221;Enter public URL of the spreadsheet” width=”500″ height=”400″&gt;&lt;/iframe&gt;</div><p>Here is the same spreadsheet embedded using Google Docs:</p><p><iframe src="http://spreadsheets.google.com/pub?key=0AnCuZ7tGCsQtdFJqbGxXekJIS3FIVWFpeDFpMkx3emc" width="500" height="400"></iframe></p><p>Tip: <a href="http://www.ampercent.com/copy-paste-html-tables-documents/6210/">How to copy paste HTML tables from a webpage and embed them in a document.</a></p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/embed-excel-spreadsheet-webpage/6833/">How to Embed An Excel SpreadSheet In a Webpage</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></content:encoded> <wfw:commentRss></wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Print Multiple Word Documents Without Opening Them</title><link>http://www.ampercent.com/print-multiple-word-documents-without-opening/6502/</link> <comments>http://www.ampercent.com/print-multiple-word-documents-without-opening/6502/#comments</comments> <pubDate>Tue, 17 Aug 2010 07:10:05 +0000</pubDate> <dc:creator>Amit Banerjee</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Feature]]></category> <category><![CDATA[How to]]></category> <category><![CDATA[MS-Word]]></category> <category><![CDATA[Office Tips]]></category><guid isPermaLink="false">http://www.ampercent.com/?p=6502</guid> <description><![CDATA[<p>Want to print multiple word documents without having to open them in Microsoft Word. Here is a simple trick which will let you print office documents in bulk</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/print-multiple-word-documents-without-opening/6502/">Print Multiple Word Documents Without Opening Them</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></description> <content:encoded><![CDATA[<p>When you are working on a Word document and want to print it on paper, you can simply click &#8220;Print&#8221; from the Microsoft Word ribbon menu. But what if you are working on multiple word documents and want to print all the files at once?</p><p>Microsoft Word makes it very easy to print multiple documents from Windows explorer menu. Surprisingly, you don&#8217;t need to open all the documents but can print them all at once. This is perfect when you have a large number of documents to consider and want a quick way to print documents in bulk.</p><h3>Print Multiple Word Documents From Right Click Context Menu</h3><p>Follow these simple steps:</p><p>1. First adjust your printers settings by printing a sample document and see whether the margins and layout are all correct. Do not ignore this step because if the print settings are not at par with your requirements, all the<a title="How To Reduce Printing Costs Of Office Documents – Save Ink And Paper" href="http://www.ampercent.com/reduce-printing-costs/7876/"> ink and paper will be wasted</a>.</p><p>2. Move all the documents to a single folder and open that folder.</p><p>3. If the files are consecutive,  hold down the shift key and select the first and last file. This will select all the files in the order you want them to print. If you want to print selected files only, hold down Ctrl key and select the files you want to print.</p><p><strong>For example:</strong> Let&#8217;s say you have 10 documents with file names 1.doc, 2.doc and so on. If you want to print all the documents serially, hold down the Shift key and select 1.doc and 10.doc ( i.e the first and last file in the series of documents that are going to be printed).</p><p>Instead, if you want to print only 5.doc and 9.doc, hold down the Control keyon your keyboard and follow the next steps.</p><p><img class="aligncenter size-full wp-image-9089" title="Print multiple Word documents in Bulk" src="http://cdn.ampercent.com/wp/wp-content/uploads/print-multiple-documents.png" alt="Print multiple Word documents in Bulk" width="583" height="395" /></p><p>4. Right click and select &#8220;Print&#8221; from right click context menu. Windows will now print all the documents one by one in the order you have selected them using the default print settings.</p><p><strong>Tip:</strong> Don&#8217;t try to print multiple documents when any of the document is open in Microsoft Word. First close all the documents and then use the above trick.</p><p>The above technique works with any office document, not just word. This is quite handy when you have a large number of documents to print and you don&#8217;t want to open each document and manually print them one by one.</p><p>Also read: <a href="http://www.ampercent.com/reduce-printing-costs-choosing-correct-font-type/5562/">Tips to reduce printing costs</a></p><h3>Save Or Print Word Documents Into A PDF File</h3><p>In some situations, you may want to print the word document as a PDF and not on paper. Let&#8217;s say you are working on a report and want to send the final copy to a client for verification purpose.</p><p>It makes perfect sense to first send a PDF copy of the Word document to the client, see his response, make corrections to the original document if it is asked for and then print the hard copy of the report on paper.</p><p>Microsoft Word makes it very easy to print a word document as PDF. In case you are unaware of the &#8220;Print as PDF&#8221; feature, here are the steps which needs to be followed:</p><p>1. Go to Microsoft Download Center website and download the &#8220;<a href="Http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=7">Save as PDF or XPS</a>&#8216; office Add-in.</p><p>The &#8220;Save as PDF&#8221; add-in for Microsoft Office 2007 allows you to export and save Word documents as PDF, there is no need to use expensive PDF editing software programs like Adobe Acrobat, Foxit Reader and so on.</p><p>2. After the program has been installed, open the document in Microsoft Word and you will see a new &#8216;Print as PDF&#8217; option, as shown below:</p><p><img class="aligncenter size-full wp-image-9090" title="Save or Export a Word Document as PDF" src="http://cdn.ampercent.com/wp/wp-content/uploads/save-word-documents-as-pdf.png" alt="Save or Export a Word Document as PDF" width="429" height="445" /></p><p>3. Export the doc or docx file as PDF and you are done.</p><h3>Combine Multiple Word Documents Into A PDF File And Print Them In Bulk</h3><p>Another good idea to print multiple files or office documents would be to combine all of them into a single document and print the newly created document from the first page to the last. The advantage is that this technique works on all operating systems e.g Windows XP, Windows Vista or Windows 7 and you need not worry about whether a specific page of a specific file will be printed or not.</p><p>Here are the steps that needs to be followed:</p><p>1. First create a backup of all the documents, in case you want to revert the changes later.</p><p>2. Open the first document in the list and move the cursor to the end of the document. You will be adding the content of the second document at the end of the first document, hence the cursor needs to be positioned right at the place where the content of the first document finishes.</p><p>3. In case you want to insert a document somewhere in the middle of the already opened document, you have to position the cursor at the desired location.</p><p>4. Once you are done with the position, switch to the &#8220;Insert&#8221; tab and select &#8220;Insert text from file&#8221;.</p><p><img class="aligncenter size-full wp-image-9091" title="Merge multiple Word documents Into one" src="http://cdn.ampercent.com/wp/wp-content/uploads/merge-multiple-word-documents.png" alt="Merge multiple Word documents Into one" width="575" height="219" />5. This will allow you to merge multiple word documents into a single document by pulling in the text and content of another document into the current one.</p><p>6. Similarly, add up text and content from all the documents into the currently opened document using the &#8216;Insert text from file&#8221; option. The only catch is that Microsof Word wont preserve the formatting of individual documents, so you will need to adjust the formatting at the end.</p><p>7. When you are done adding all the documents to the final copy, there are two options</p><ul><li>Either, print all the content using the simple &#8220;Print&#8221; option in word. This will print all the subpages which you have imported from other documents earlier on.</li><li>Export the final copy as a PDF file, preview it and then print using the default &#8220;Print&#8217; option in Adobe Reader ( or whatever PDF reading software you&#8217;re using the browse PDF files).</li></ul><p>These are just a couple of ways to manage the print jobs of multiple documents in one go. You may also want to check out <a href="http://www.ampercent.com/send-print-jobs-of-google-docs-documents-and-spreadsheets-from-your-mobile-device/9012/">Google Docs cloud print feature</a> which allows you to send print jobs to your cloud connected printer directly from a mobile device. This is especially useful, when you&#8217;re travelling and want to print a whole bunch of documents stored in your Google Docs account.</p><p>A slightly complicated procedure would be to <a href="http://www.ampercent.com/use-microsoft-office-to-create-and-edit-google-docs-documents-offline/5795/">sync Google Docs documents with Microsoft office</a> and use Google&#8217;s cloud print feature to print multiple documents from anywhere, any computer.</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/print-multiple-word-documents-without-opening/6502/">Print Multiple Word Documents Without Opening Them</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></content:encoded> <wfw:commentRss></wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How To Type The New Indian Rupee Symbol in MS Word</title><link>http://www.ampercent.com/type-new-indian-rupee-symbol-ms-word/6316/</link> <comments>http://www.ampercent.com/type-new-indian-rupee-symbol-ms-word/6316/#comments</comments> <pubDate>Sun, 18 Jul 2010 09:50:11 +0000</pubDate> <dc:creator>Soumen</dc:creator> <category><![CDATA[Tech News]]></category> <category><![CDATA[Feature]]></category> <category><![CDATA[India]]></category> <category><![CDATA[MS-Word]]></category> <category><![CDATA[Office Tips]]></category><guid isPermaLink="false">http://www.ampercent.com/?p=6316</guid> <description><![CDATA[<p>Here is a nice tutorial on how you can type the new Indian Rupee symbol in MS Word or other text editors that lets you change the font of the text.</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/type-new-indian-rupee-symbol-ms-word/6316/">How To Type The New Indian Rupee Symbol in MS Word</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></description> <content:encoded><![CDATA[<p>Now that the new <a href="http://www.ampercent.com/official-symbol-indian-rupee/6289/" target="_blank">Indian Rupee symbol is official</a> and the government has acknowledged it, its time for users to start using it. When I say &#8220;use&#8221; I mean type it. Its too early to get the font officially on your keyboard with a key assigned for it like the &#8220;$&#8221; symbol. If you can&#8217;t wait until then learn how you can type it in Microsoft Windows.</p><p><img class="aligncenter size-full wp-image-6317" title="Type New Indian Rupee Symbol in MS Word" src="http://cdn.ampercent.com/wp/wp-content/uploads/type-new-indian-rupee-symbol-ms-word.jpg" alt="type new indian rupee symbol microsoft word" width="590" height="240" /></p><h2>Steps To Type New Indian Rupee Symbol :</h2><p>1. Download the <a href="http://blog.foradian.com/rupee-font-version-30" target="_blank"><strong>Rupee Foradian Font</strong></a> from the Mangalore based Foradian Technologies Pvt Ltd blog. Copy the <em>.ttf</em> file after downloading.</p><p>2. Open <em>[Windows Drive Letter]:\Windows\Fonts</em> and paste the font there. It will be installed on your PC.</p><p>3. Once done, open your MS Word (or any text editing tool that lets you change the font of the text) and type &#8220;<strong>`</strong>&#8221; on your keyboard. It is the leftmost key in the number row (not Numpad) i.e just to the left of &#8220;<strong>1</strong>&#8221; or just above the Tab key.</p><p>4. Select the text (<strong>`</strong>) and change the font to Rupee Foradian. Bang and the new Indian rupee symbol is there.</p><p>If you are still facing some problems doing it just visit Youtube and watch this <a href="http://www.youtube.com/watch?v=XSfhzuU7Crw" target="_blank">video tutorial</a>.</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/type-new-indian-rupee-symbol-ms-word/6316/">How To Type The New Indian Rupee Symbol in MS Word</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></content:encoded> <wfw:commentRss></wfw:commentRss> <slash:comments>41</slash:comments> </item> <item><title>7 Excel ‘If’ Function Techniques You Need to Know</title><link>http://www.ampercent.com/advanced-excel-if-formulas/6245/</link> <comments>http://www.ampercent.com/advanced-excel-if-formulas/6245/#comments</comments> <pubDate>Wed, 07 Jul 2010 06:54:01 +0000</pubDate> <dc:creator>guest</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Feature]]></category> <category><![CDATA[How to]]></category> <category><![CDATA[Ms-Excel]]></category> <category><![CDATA[Office Tips]]></category><guid isPermaLink="false">http://www.ampercent.com/?p=6245</guid> <description><![CDATA[<p>Here are 7 conditional techniques that can help you create useful Excel formulas using "IF" function in Microsoft Excel</p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/advanced-excel-if-formulas/6245/">7 Excel ‘If’ Function Techniques You Need to Know</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></description> <content:encoded><![CDATA[<p><em>This is a guest article from Yoav Ezer. If you want to guest post on this blog, <a href="http://www.ampercent.com/guest-blogging/">check out the guidelines here.</a></em></p><p>The IF() function is one of Excel&#8217;s super functions. It is a fundamental building-block of Excel formulas. You will find it present in almost any complex formula. There is a lot more power in Excel formulas conditions than just the basic IF() function, though.</p><p>Here are 7 conditional techniques that can help you create even more robust and useful Excel formulas:</p><h2>1. Nested If Functions</h2><p>This is the most basic type of &#8216;complex&#8217; if() function. You can use an additional if function to create a more complex condition within your Excel formula.</p><p>For instance:</p><pre>=IF(A1&gt;10,IF(A1&lt;20,"In range"))</pre><p>The function above would test whether cell A1 contains a value that&#8217;s between 10 and 20. Only if both conditions are satisfied then the formula returns the value &#8220;In range&#8221;.</p><p>It is possible to use several levels of IF() function nesting. For example:</p><pre>=IF(A1&gt;10,IF(A1&lt;20,IF(B2="HAS AMMO","FIRE!!!!")))</pre><p>The formula above tests that A1 contains a number that is within range and that B2 holds the status &#8216;HAS AMMO&#8217; and only if those three conditions are satisfied, it returns a value of &#8220;FIRE!&#8221;.</p><h2>2. Logical-Boolean Functions</h2><p>Nesting is powerful but it is complicated and often results in a formula that is difficult to read or change. A much better way to create complex conditions is to use Excel&#8217;s Boolean functions.</p><p>The AND() function will return true if all its parameters are true conditions.</p><p>So, the formula&#8230;</p><pre>=IF(AND(A1&gt;10,A1&lt;20), "In range")</pre><p>Will also check if cell A1 is between 10 and 20 pluse, it is much easier to understand (and to write) then the nested formula above.</p><p>The following formula&#8230;</p><pre>=IF(AND(A1&gt;10,A2&lt;20,B1="HAS AMMO"),"FIRE!")</pre><p>Is ten times easier to write/read then the corresponding nested IF() above</p><p>Another extremely useful Boolean function is the OR() function.</p><p>The formula&#8230;</p><pre>=IF(OR(A1="CAT IS AWAY",A1="CAT IS BUSY"),"THE MICE PLAY")</pre><p>Will return &#8216;THE MICE PLAY&#8217; if A1 equals either &#8216;cat is away&#8217; or &#8216;cat is busy&#8217;.</p><h2>3. Countif, SumIf, Averageif, etc.</h2><p>This group of functions allows you to apply a range function such as SUM(), COUNT() OR AVERAGE() only to rows that meet a specific condition.</p><p>For instance, you can sum or count all the sales that were made during the year 2001 as shown below:</p><p><img class="wlDisabledImage" style="display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px;" title="sumif-function[3]" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/7e6b1748bf3b_14723/sumiffunction3.png" alt="sumif-function[3]" width="574" height="250" border="0" /></p><p>It goes without saying that these conditional functions are very useful.</p><h2>4. Countifs, SumIfs, Averageifs, etc.</h2><p>The COUNTIFS() and SUMIFS() function (and the rest of the multiple conditions aggregate functions) were introduced in Excel 2007.</p><p>These functions enable us to apply an aggregation function to a subset of rows where those rows meet several conditions.</p><p>For instance, we can use the SUMIFS() function to sum all the sales that were made in the January of 2001, with a single function&#8230;</p><p><img class="wlDisabledImage" style="display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px;" title="sumifs-function" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/7e6b1748bf3b_14723/sumifsfunction.png" alt="sumifs-function" width="562" height="273" border="0" /></p><h2>5. If and Array Formulas</h2><p>Array formulas might be the most advanced of the formula techniques and while we can&#8217;t hope to cover the topic of array formulas in this article, it is important to mention that combining the IF() function with array formulas is a powerful tool.</p><p>In Excel versions prior to 2007, the formula AVERAGEIF() did not exist. So, if for example, you wished to average a range of numbers without including Zeros in the calculation, you needed to rely on an array formula:</p><p><img class="wlDisabledImage" style="display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px;" title="averageif-array-formula[3]" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/7e6b1748bf3b_14723/averageifarrayformula3.png" alt="averageif-array-formula[3]" width="473" height="211" border="0" /></p><p>Array formulas can also be used to mimic the working of countifs(), sumifs() and the rest of the xxxxxifs() functions, that simply did not exist in Excel versions before 2007.</p><p>They can also be used to implement new functions that does not exist such as MAXIF() and MINIF().</p><p>For a more in depth discussion of <a href="http://www.cpearson.com/excel/arrayformulas.aspx">array formulas, look here</a>.</p><h2>6. IFError() function</h2><p>A close relative of the IF() function is the IFERROR() function. It allows you return a valid value in case a formula returns an error. For instance, if you have a formula that might cause a division by zero error, you can use the IFERROR() function to catch this event and return a valid value, as shown below:</p><p><img class="wlDisabledImage" style="display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px;" title="iserror" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/7e6b1748bf3b_14723/iserror.png" alt="iserror" width="542" height="231" border="0" /><strong>Note</strong>: It is better to use the IF() function to avoid an error then to use the ISERROR() function to catch an error. It is both faster (in terms of CPU) and better programming practice. So the same result we achieved with the ISERROR() function above can be achieved with an IF() function as shown here:<br /> <img class="wlDisabledImage" style="display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px;" title="avoiding-iserror" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/7e6b1748bf3b_14723/avoidingiserror.png" alt="avoiding-iserror" width="479" height="232" border="0" /></p><p>But there are cases when you cannot pretest the formula parameters and in those cases the ISERROR() function can come in handy.</p><h2>7. Information functions</h2><p>Distant relatives of the IF() function are the information functions. This group includes several functions that give you information about the type of the value contained in a cell (if it&#8217;s a string, a number, an odd number or an even number), if a cell is empty or if it contains an N/A value and more.</p><p>These functions, when used in conjunction with the IF() function can be pretty handy, for example, they allow you to easily check whether a cell is empty:</p><p><img class="wlDisabledImage" style="display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px;" title="information-function" src="http://cdn.ampercent.com/wp/wp-content/uploads/post/7e6b1748bf3b_14723/informationfunction.png" alt="information-function" width="509" height="214" border="0" /></p><h3>Summary</h3><p>Our examples in this article only scratch the surface, we would encourage you to experiment more into what you can do. These seven simple functions hide a great deal of power and utility.</p><p>They are the building blocks of some very useful macros. We hope we have inspired you to put them to use in your own projects!</p><p>More Excel tips:</p><p>1. <a href="http://www.ampercent.com/excel-date-formalas-tips/6223/">How to work with Date functions in Excel</a><br /> 2. <a href="http://www.ampercent.com/create-interactive-timelines-excel-web-tools/5419/">Create an Interactive Timeline with Microsoft Excel</a></p><p><em>Yoav is the CEO of Cogniview, a company that creates <a href="http://www.cogniview.com/articles/pdf-to-xls-converter.php">PDF to XLS</a> conversion software. Prior to that, Yoav Ezer was the CEO of Nocturnus, a technology-centered software solution company. For more Excel tips from Yoav, join him on <a href="http://www.facebook.com/Cogniview.Codswallop" rel="nofollow">Facebook</a> or Twitter.</em></p><p><p style="background-color:#FFFFE0; border:1px solid #FFFFE0;padding:5px;"><b><a href="http://www.ampercent.com/advanced-excel-if-formulas/6245/">7 Excel ‘If’ Function Techniques You Need to Know</a></b> originally published on <b><a href="http://www.ampercent.com">Ampercent</a></b></p></p>]]></content:encoded> <wfw:commentRss></wfw:commentRss> <slash:comments>10</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 1/52 queries in 0.056 seconds using disk: basic
Object Caching 1599/1710 objects using disk: basic
Content Delivery Network via cdn.ampercent.com

Served from: www.ampercent.com @ 2012-02-08 20:12:37 -->
