<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>Shortcuts Archives - Excel Zoom</title>
	<atom:link href="https://excelzoom.com/tag/shortcuts/feed/" rel="self" type="application/rss+xml" />
	<link>https://excelzoom.com/tag/shortcuts/</link>
	<description>...because it&#039;s more than just a calculator</description>
	<lastBuildDate>Wed, 29 May 2019 10:15:44 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.2</generator>

<image>
	<url>https://excelzoom.com/wp-content/uploads/2022/04/favicon.ico</url>
	<title>Shortcuts Archives - Excel Zoom</title>
	<link>https://excelzoom.com/tag/shortcuts/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Open Excel VBA Editor</title>
		<link>https://excelzoom.com/how-to-open-excel-vba-editor/</link>
					<comments>https://excelzoom.com/how-to-open-excel-vba-editor/#comments</comments>
		
		<dc:creator><![CDATA[Mark]]></dc:creator>
		<pubDate>Wed, 29 May 2019 09:39:40 +0000</pubDate>
				<category><![CDATA[Macros]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Excel VBA Editor]]></category>
		<category><![CDATA[ExcelVBA]]></category>
		<category><![CDATA[Shortcuts]]></category>
		<category><![CDATA[Visual Basic]]></category>
		<guid isPermaLink="false">http://excelzoom.com/?p=4328</guid>

					<description><![CDATA[<p>Excel VBA is a powerful tool which enables the automation of tasks in Excel. It can be used to automate many repetitive tasks along with more complex applications. This quick tip guide shows you how to open the Excel Visual Basic Editor (aka Excel VBA Editor) and get started with VBA programming in Excel. Having [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/how-to-open-excel-vba-editor/">How to Open Excel VBA Editor</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Excel VBA is a powerful tool which enables the automation of tasks in Excel. It can be used to automate many repetitive tasks along with more complex applications. This quick tip guide shows you how to open the Excel Visual Basic Editor (aka Excel VBA Editor) and get started with VBA programming in Excel. Having access to the VBA editor lets you write your own VBA code or review recorded macros. Read on to see How to Open and Start Using the MS Excel VBA Editor</p>
<p><img fetchpriority="high" decoding="async" class="wp-image-4329 size-full aligncenter" src="https://excelzoom.com/wp-content/uploads/2019/05/Excel-VBA-Editor.png" alt="Excel VBA - Project Manager" width="1768" height="1034" srcset="https://excelzoom.com/wp-content/uploads/2019/05/Excel-VBA-Editor.png 1768w, https://excelzoom.com/wp-content/uploads/2019/05/Excel-VBA-Editor-600x351.png 600w" sizes="(max-width: 1768px) 100vw, 1768px" /></p>
<h2>Open Excel VBA Editor</h2>
<p><img decoding="async" class="wp-image-4330 size-full aligncenter" src="https://excelzoom.com/wp-content/uploads/2019/05/Open-Excel-VBA-Editor.png" alt="Excel VBA - Visual Basic Editor" width="887" height="391" srcset="https://excelzoom.com/wp-content/uploads/2019/05/Open-Excel-VBA-Editor.png 887w, https://excelzoom.com/wp-content/uploads/2019/05/Open-Excel-VBA-Editor-600x264.png 600w" sizes="(max-width: 887px) 100vw, 887px" /></p>
<p>To open Excel visual basic editor,</p>
<p><strong>Click the visual basic button on the developer tab</strong>.</p>
<p><strong>If the Developer tab is not present, go to File -&gt; Options -&gt; customize ribbon and tick Developer.</strong></p>
<p>You can also open VBA in Excel using <strong>Alt + F11 keyboard shortcut</strong>.</p>
<h2>What is the VBA Editor</h2>
<p>Great, now you’re in the editor, what is it? Microsoft Excel&#8217;s Visual basic editor can be referred to as, VBA editor, VB editor and even VBE. It is all the same thing. It’s the place where you can create macros and write scripts in Excel VBA.</p>
<p>The most basic sections of the editor is the Project View in which you can see modules listed down the left hand side. Think of this like a folder for your macros. Modules contain the code that is required for your macros to work. Its beyond the scope of this article to go into how to split out your code into objects but modules gives the user a powerful tool to create efficient and well organized code.</p>
<p><img decoding="async" class="wp-image-4331 size-full aligncenter" src="https://excelzoom.com/wp-content/uploads/2019/05/Excel-VBA-Modules.png" alt="Excel VBA - Modules" width="380" height="387" /></p>
<p>To get started writing code you will need to create a new module. Add a new module in VBA editor by clicking on VBAProject(Book1), right click, Insert Model. Delete a module by simply right clicking, Remove Module. Excel will prompt you to confirm before deleting.</p>
<p><img decoding="async" class="wp-image-4332 size-full aligncenter" src="https://excelzoom.com/wp-content/uploads/2019/05/Excel-VBA-Insert-New-Module.jpg" alt="Excel VBA Editor - New Module" width="375" height="294" /></p>
<h2>Record a Macro in Excel</h2>
<p>Recording a macro in Excel is a great way to automate tasks as well as a great tool to help learn more VBA code. A common trick is to record a macro and then review the VBA code to see how it works. Now you know how to open the VBA editor in Excel you should be able to record a macro, open the editor and view the code. You’ll see the system generated VBA can be messy but it will give you the key snippets of code needed for the desired action. These can be things as simple as formatting, copying, pasting, deleting or selecting a sell. Alternatively, you could get quite advanced and carry out entire tasks before going into the Excel visual basic editor to review the code.</p>
<p>The world really is your oyster when you get started recording macros in excel. Top tip is to start with small steps. You can always bulk all your small macros into one at a later stage but when it comes to reviewing each step its useful to keep it separate, at least when you are first getting started.</p>
<p><img decoding="async" class="wp-image-4333 size-full aligncenter" src="https://excelzoom.com/wp-content/uploads/2019/05/Excel-VBA-Record-Macro.png" alt="Excel VBA Editor - Record Macro" width="739" height="326" srcset="https://excelzoom.com/wp-content/uploads/2019/05/Excel-VBA-Record-Macro.png 739w, https://excelzoom.com/wp-content/uploads/2019/05/Excel-VBA-Record-Macro-600x265.png 600w" sizes="(max-width: 739px) 100vw, 739px" /></p>
<h2> Run a Macro in Excel VBA Editor</h2>
<p>Once you have entered the VBA editor, created a module and written some code you will want to run the code.</p>
<p>To run VBA code in VBA editor simply click the Run Macro button which is shaped like a small green triangle on the toolbar. You can also Run Macro in Excel VBA editor by pressing <strong>F5 shortcut.</strong></p>
<p><img decoding="async" class="wp-image-4334 size-full aligncenter" src="https://excelzoom.com/wp-content/uploads/2019/05/Excel-VBA-Run-Macro.png" alt="Excel VBA Editor - Run Macro (F5)" width="559" height="186" /></p>
<p>&nbsp;</p>
<p>This is a very quick introduction to show you how to open VBA in excel, create a new module and also run your macro once written. To write some actual code, as we have suggested above, a great tip is to record macros and then go back and review the code in the MS Excel VBA editor. You’ll be surprised how messy the generated VBA can get but it will give you the key snippets of VBA code you need to get started with Excel VBA programming and is a great way of learning the syntax of VBA. Alternatively, Google is your best friend when it comes to writing macros. So what are you waiting for, press Alt + F11 in Excel and get coding in VBA!</p>
<p>&nbsp;</p>
<p>What to do next? REad our quick <a href="https://excelzoom.com/introduction-to-vba-for-ms-excel/">Introduction to VBA for MS Excel</a></p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/how-to-open-excel-vba-editor/">How to Open Excel VBA Editor</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://excelzoom.com/how-to-open-excel-vba-editor/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Remove All Rows Containing Certain Data</title>
		<link>https://excelzoom.com/remove-all-rows-containing-certain-data/</link>
					<comments>https://excelzoom.com/remove-all-rows-containing-certain-data/#comments</comments>
		
		<dc:creator><![CDATA[Mark]]></dc:creator>
		<pubDate>Mon, 20 Jul 2015 17:10:38 +0000</pubDate>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Cell]]></category>
		<category><![CDATA[Row]]></category>
		<category><![CDATA[Shortcuts]]></category>
		<guid isPermaLink="false">http://excelzoom.com/?p=826</guid>

					<description><![CDATA[<p>Recently I had some data from a website that was poorly formatted, but I needed to get it into a spreadsheet to work with. When I copied the data into the spreadsheet, I needed to remove all of the rows that contained certain irrelevant data, such as repeated header fields. Other use cases might require you [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/remove-all-rows-containing-certain-data/">Remove All Rows Containing Certain Data</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Recently I had some data from a website that was poorly formatted, but I needed to get it into a spreadsheet to work with. When I copied the data into the spreadsheet, I needed to remove all of the rows that contained certain irrelevant data, such as repeated header fields.</p>
<p>Other use cases might require you to delete any rows containing someone&#8217;s name, a location, or some other information to trim the excess data from your sheet.</p>
<h2>How to Remove all Rows Containing Certain Data</h2>
<ol>
<li>Select all of your data, including the data you wish to remove.</li>
<li><img decoding="async" class="alignright size-full wp-image-827" src="https://excelzoom.com/wp-content/uploads/2015/07/find-replace.png" alt="find-replace" width="457" height="301" />Press <strong>Ctrl F</strong> to open the Find and Replace window.</li>
<li>Type the text that is contained in the row you wish to delete. For example if you need to delete rows with someone&#8217;s name, type that name in.</li>
<li>Click the Find All button.
<ul>
<li>This will show a list of all cells containing the data you searched for below the search box.</li>
</ul>
</li>
<li><img decoding="async" class="alignright size-full wp-image-828" src="https://excelzoom.com/wp-content/uploads/2015/07/delete-row.png" alt="delete-row" width="177" height="175" srcset="https://excelzoom.com/wp-content/uploads/2015/07/delete-row.png 177w, https://excelzoom.com/wp-content/uploads/2015/07/delete-row-100x100.png 100w" sizes="(max-width: 177px) 100vw, 177px" />Click on one of the results that appear below the search box, then press <strong>Ctrl A</strong>.
<ul>
<li>All results should be highlighted now. Also, if you notice on your spreadsheet, each cell containing what you searched for will be selected.</li>
</ul>
</li>
<li>Click the Close button on the Find and Replace window.</li>
<li>Press <strong>Ctrl &#8211;</strong> to open the Delete window.</li>
<li>Select the Entire Row option, and press the OK button.</li>
</ol>
<p>All rows containing the data you wanted to remove should be gone now!</p>
<p>You can also remove an entire column of data that contains certain information in a similar manner. To remove the entire column, simply select the Entire Column option in the last step above.</p>
<p>As with any data modification, be sure to have a copy of your data saved elsewhere as a backup just in case you accidentally remove some important information. This will ensure that when trying to remove all rows containing certain data, you do so in the safest possible way.</p>
<h2>Remove Certain Rows Containing Certain Data with VBA</h2>
<p>In the developer tab, go to Visual Basic as normal and create a module like the one below. Change and amend the code to your needs and then simply run the module on your sheet.</p>
<p>&nbsp;</p>
<pre class="lang-vb prettyprint prettyprinted"><code> <span class="kwd">Sub</span><span class="pln"> Delete_All_Rows_IF_Cell_Contains_Certain_String_Text</span><span class="pun">()</span>
    <span class="kwd">Dim</span><span class="pln"> lRow </span><span class="kwd">As</span> <span class="kwd">Long</span>
    <span class="kwd">Dim</span><span class="pln"> iCntr </span><span class="kwd">As</span> <span class="kwd">Long</span><span class="pln">
    lRow </span><span class="pun">=</span> <span class="lit">1000</span>
    <span class="kwd">For</span><span class="pln"> iCntr </span><span class="pun">=</span><span class="pln"> lRow </span><span class="kwd">To</span> <span class="lit">1</span> <span class="kwd">Step</span> <span class="pun">-</span><span class="lit">1</span>
        <span class="kwd">If</span><span class="pln"> Cells</span><span class="pun">(</span><span class="pln">iCntr</span><span class="pun">,</span> <span class="lit">3</span><span class="pun">).</span><span class="pln">Value </span><span class="pun">=</span> <span class="str">"Certain data to delete here"</span> <span class="kwd">Then</span><span class="pln">
            Rows</span><span class="pun">(</span><span class="pln">iCntr</span><span class="pun">).</span><span class="pln">Delete
        </span><span class="kwd">End</span> <span class="kwd">If</span>
    <span class="kwd">Next</span>
    <span class="kwd">End</span> </code></pre>
<p>Number &#8220;3&#8221; in the &#8216;If Cells (iCntr, 3).Value represents the third column (C)<br />
lRow = 1000 means it will check the first 1000 rows.</p>

<p>The post <a rel="nofollow" href="https://excelzoom.com/remove-all-rows-containing-certain-data/">Remove All Rows Containing Certain Data</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://excelzoom.com/remove-all-rows-containing-certain-data/feed/</wfw:commentRss>
			<slash:comments>7</slash:comments>
		
		
			</item>
		<item>
		<title>Type Same Data In Multiple Cells</title>
		<link>https://excelzoom.com/type-same-data-in-multiple-cells/</link>
					<comments>https://excelzoom.com/type-same-data-in-multiple-cells/#respond</comments>
		
		<dc:creator><![CDATA[Mark]]></dc:creator>
		<pubDate>Sat, 29 Aug 2015 20:26:32 +0000</pubDate>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Automatic]]></category>
		<category><![CDATA[Cell]]></category>
		<category><![CDATA[Paste]]></category>
		<category><![CDATA[Shortcuts]]></category>
		<guid isPermaLink="false">http://excelzoom.com/?p=849</guid>

					<description><![CDATA[<p>Have you ever had the need to type the same data in multiple cells in your Excel spreadsheet? If so, you know it can be quite the time consuming process if you have to manually type the data in a lot of cells. Even copying and pasting can be time consuming. Luckily there is an [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/type-same-data-in-multiple-cells/">Type Same Data In Multiple Cells</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Have you ever had the need to type the same data in multiple cells in your Excel spreadsheet? If so, you know it can be quite the time consuming process if you have to manually type the data in a lot of cells. Even copying and pasting can be time consuming. Luckily there is an easy way to type same data in multiple cells.</p>
<h2>How to type same data in multiple cells</h2>
<ol>
<li>Select all of the cells that need to contain the same data. If the cells are consecutive you can click and drag to highlight them all, or you can hold down the CTRL button and click each individual cell.</li>
<li>With all of the cells still highlighted, type the data you need repeated in all the cells in the last cell you selected.</li>
<li>After you type the data press CTRL and the Enter button. Your data should now be in all of the cells you selected.</li>
</ol>
<p><img decoding="async" class="alignleft wp-image-851 size-full" src="https://excelzoom.com/wp-content/uploads/2015/08/same-data-multiple-cells.gif" alt="Type Same Data Multiple Cells" width="346" height="345" /></p>

<p>If you have multiple worksheets that need the same data in the same cells in each worksheet, you can automate this process even further by selecting each worksheet tab before you start selecting the cells in step #1 above. You can select multiple non-consecutive worksheet tabs by holding down CTRL and clicking on each tab, or if the tabs are consecutive you can click the first tab, hold down Shift, and then click the last tab. All tabs in between should also be highlighted. To deselect the tabs, click any other tab that is not the tab for the current  worksheet you are looking at.</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/type-same-data-in-multiple-cells/">Type Same Data In Multiple Cells</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://excelzoom.com/type-same-data-in-multiple-cells/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Use Silk to convert your Excel Files into an interactive online database with visualizations</title>
		<link>https://excelzoom.com/use-silk-to-convert-your-excel-files-into-an-interactive-online-database-with-visualizations/</link>
					<comments>https://excelzoom.com/use-silk-to-convert-your-excel-files-into-an-interactive-online-database-with-visualizations/#comments</comments>
		
		<dc:creator><![CDATA[Mark]]></dc:creator>
		<pubDate>Wed, 15 Jul 2015 21:10:25 +0000</pubDate>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Automatic]]></category>
		<category><![CDATA[Formats]]></category>
		<category><![CDATA[Shortcuts]]></category>
		<guid isPermaLink="false">http://excelzoom.com/?p=822</guid>

					<description><![CDATA[<p>Do you have an Excel file with information that you would like to publish on the Internet or share with co-workers? Maybe addresses you want to put into a map? A directory of partners and contacts? Or just a gallery of your favorite restaurants? For free? Then you might like Silk. Silk is a data [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/use-silk-to-convert-your-excel-files-into-an-interactive-online-database-with-visualizations/">Use Silk to convert your Excel Files into an interactive online database with visualizations</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Do you have an Excel file with information that you would like to publish on the Internet or share with co-workers? Maybe addresses you want to put into a map? A directory of partners and contacts? Or just a gallery of your favorite restaurants? For free?</p>
<p>Then you might like <a href="http://www.silk.co/?utm_type=GuestPost&amp;utm_campaign=ExcelZoom&amp;utm_source=ExcelZoom.com">Silk</a>. Silk is a data publishing platform that lets you convert a spreadsheet into a live interactive site. Silk takes each row on your spreadsheet and converts it into a standalone Web page (we call it a datacard). Then Silk allows you to build maps, charts, tables, and image galleries using the spreadsheet information stored in each datacard.</p>
<p>For example, here I&#8217;ve used Silk to turn a spreadsheet with headphone information into a <a href="http://headphones.silk.co">site with interactive tables and graphs</a>.</p>
<p><a href="http://www.excelzoom.com">ExcelZoom.com</a> was kind enough to allow us to explain Silk in this guest post and provide a quick user guide. I&#8217;ll show you how to prepare your spreadsheet for import into Silk, import options and then how to build visualizations.</p>
<h2 id="preparing-your-sheet-for-import-into-silk">Preparing your sheet for import into Silk</h2>
<p>Silk will convert every row in your spreadsheet into a Webpage (datacard). You need to select one of the columns on your spreadsheet for the titles of your datacards. The information in the other columns will also show up on each datacard page in a table we call the factsheet. For import Silk requires a &#8220;flat&#8221; spreadsheet &#8211; no nested cells and no merged cells. You need to put a title in the first row of every column you are using &#8211; no blank rows. (See <a href="https://www.silk.co/help/tools-and-extras/some-tips-on-preparing-your-spreadsheet-for-import-into-silk">this tutorial on preparing your spreadsheet for Silk</a> for more information.)</p>
<p><img decoding="async" src="https://silk-blog.s3.amazonaws.com/blogpost-images/spreadsheet-example.png" alt="An example of a spreadsheet suitable for import into Silk" /></p>
<h2 id="importing-your-sheet-into-silk">Importing your sheet into Silk</h2>
<p>Now <a href="http://www.silk.co/signup?utm_type=GuestPost&amp;utm_campaign=ExcelZoom&amp;utm_source=ExcelZoom.com">sign up for Silk</a>. All that you need is an email and to pick a password. Next you&#8217;ll need to name your Silk. Then you can elect to take a quick tutorial or jump right into the import. To do the import:</p>
<p>https://www.youtube.com/watch?v=EajJ7mvYJWo</p>
<ul>
<li>Find the &#8216;Add a new collection&#8217; menu at the bottom of your screen.</li>
<li>Click on the &#8216;Upload Spreadsheet&#8217; box.</li>
<li>Drag the Excel file you wish to upload into the drop box.</li>
<li>Or use the ‘Paste spreadsheet&#8217; option to copy and paste the columns from your spreadsheet into the importer box.</li>
</ul>
<p><img decoding="async" src="https://silk-blog.s3.amazonaws.com/tutorial-images/tutorial_spreadsheet_step2_import_options_nonumbers.png" alt="The different options to import a collection" /></p>
<p>After you click &#8216;Import&#8217;, you will get a preview of how your datacards will appear in Silk.</p>
<p><img decoding="async" src="https://d548fecxfnojt.cloudfront.net/clients/website/9ba5e8f423bb62ad5770ac5581ed7f42/website/images/tutorial_spreadsheet_step3_preview.png" alt="Import preview" /></p>
<ol>
<li>Browse through the datacards by clicking the arrows.</li>
<li>Select which column you want to use as the title for each datacard.</li>
<li>Specify the &#8220;Collection&#8221; these datacards will go into. Collections hold together related datacards on a Silk. It&#8217;s best to change the collection name to something descriptive. We used &#8216;Headphones&#8217; in this example.</li>
<li>Start the import.</li>
</ol>
<p>If the preview looks good, click the blue &#8220;Import&#8221; button to convert your spreadsheet into a Silk site.</p>
<p><img decoding="async" src="https://d548fecxfnojt.cloudfront.net/clients/website/9ba5e8f423bb62ad5770ac5581ed7f42/website/images/tutorial_spreadsheet_step6_visualize.png" alt="Visualize" /></p>
<ul>
<li>When your import is completed, Silk will automatically analyze your data and place you into the &#8220;Explore&#8221; tab (this is where you can build visualization and explore the data). Silk will suggest a visualization.</li>
<li>You can accept the visualization suggestion or pick a different one from the visualization ribbon. Silk offers 14 different types including maps, charts, tables, lists and galleries.</li>
<li>You can change the contents of your visualizations by adding or removing tags (tag = column) or adding inline filters. (Further editing options can be found by clicking the &#8216;More Options&#8217; button.)</li>
<li>To publish the visualization to your Silk&#8217;s home page, click the green &#8216;Publish this visualization&#8217; button.</li>
<li>To further edit your homepage, click click the &#8216;+&#8217; anywhere on the page. Then you can choose from the menu to add more visualizations as well as blocks of text, images, YouTube videos and other media.</li>
<li>Or you can click the &#8216;Explore&#8217; tab again create more visualizations from inside Explore.</li>
</ul>
<p>For more detailed information, see <a href="https://www.silk.co/help/get-started/spreadsheet-tutorial">our spreadsheet tutorial</a>, we now created our Silk. The spreadsheet in this example was filled with information about headphones, and was used to create <a href="http://headphones.silk.co">headphones.silk.co</a>. You can now share the Silk so anyone can compare and visualize the data. You can let the Silk stay public, but you can also make it private if you wish. Better yet, you can allow anyone to edit the Silk, turning your Silk into a community project.</p>
<p>That&#8217;s it! If you like to learn more about Silk, you can participate in <a href="http://eepurl.com/bsWgen">our webinar series</a>, which will start on July 22nd, 12-1 pm EDT / 9-10am PDT. If you want examples of cool Silks, check out <a href="http://silk.co">our home page</a>, and don&#8217;t hesitate to <a href="mailto:support@silk.co">send us an email</a> if you have any questions. Attach your spreadsheet if you&#8217;re having trouble. We&#8217;d love to help anyone create a nice Silk. Thanks for reading!</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/use-silk-to-convert-your-excel-files-into-an-interactive-online-database-with-visualizations/">Use Silk to convert your Excel Files into an interactive online database with visualizations</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://excelzoom.com/use-silk-to-convert-your-excel-files-into-an-interactive-online-database-with-visualizations/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How to Format Numbers as File Sizes</title>
		<link>https://excelzoom.com/how-to-format-numbers-as-file-sizes/</link>
					<comments>https://excelzoom.com/how-to-format-numbers-as-file-sizes/#comments</comments>
		
		<dc:creator><![CDATA[Mark]]></dc:creator>
		<pubDate>Thu, 21 May 2015 04:00:30 +0000</pubDate>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Formats]]></category>
		<category><![CDATA[Shortcuts]]></category>
		<guid isPermaLink="false">http://excelzoom.com/?p=797</guid>

					<description><![CDATA[<p>Have you ever had a list of files with accompanying file sizes that you wanted to use in some sort of calculation such as adding up the file sizes, averaging them, using them in some sort of chart or other calculation? The way we usually read file sizes is with the appropriate size abbreviation such [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/how-to-format-numbers-as-file-sizes/">How to Format Numbers as File Sizes</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Have you ever had a list of files with accompanying file sizes that you wanted to use in some sort of calculation such as adding up the file sizes, averaging them, using them in some sort of chart or other calculation? The way we usually read file sizes is with the appropriate size abbreviation such as B (bytes), KB (kilobytes), MB (megabytes), etc. However, this makes it tricky to work with in an Excel spreadsheet. This tutorial will show you how to format numbers as file sizes.</p>

<h2>Why Format Numbers as File Sizes</h2>
<p>If you wanted to have a spreadsheet that lists out file sizes like 10 MB, you may enter <code>10 MB</code> in a cell. If you ever wanted to do anything with that information, such as add up file sizes, or anything else, the letters &#8220;MB&#8221; in that cell would make it difficult to do. On the other hand, if you only had a number in the cell that was formatted to display the appropriate file size abbreviation after the number you would be able to perform any calculations you wanted with that data.</p>
<p>For purposes of this example, I am going to assume that all the numbers we are working with are in bytes and we want to display them in KB, MB, or GB as appropriate.</p>
<p>Also, for reference here is a guide to convert bytes to KB, MB or GB.</p>
<ul>
<li>1,000 bytes = 1 kilobyte</li>
<li>1,000,000 bytes = 1 megabyte</li>
<li>1,000,000,000 bytes = 1 gigabyte</li>
</ul>
<p>Click on a cell that contains the file size in bytes. Then from the Home Tab, Number Group, select More Number Formats from the drop down menu.</p>
<p><img decoding="async" src="https://excelzoom.com/wp-content/uploads/2015/05/format-cells-data-formats.png" alt="Format Cells with Data Formatting" width="450" height="405" class="alignright size-full wp-image-802" />Next, you will be on the Format Cells window. From here you can select &#8220;Custom&#8221; from the left hand side under Category, and enter the following custom format in the box that says &#8220;Type&#8221;.</p>

<p>Once you have entered the format, click OK.</p>
<p>This formatting will display the bytes in a more readable format by adding the appropriate KB, MB, or GB ending to the number.</p>
<p>**UPDATE** Thanks to Dennis in the comments, who pointed out that this is the American format. Other countries format numbers with different decimal and thousands separators than us here in America. If you use a comma (,) instead of a period (.) as the decimal marker you can simply replace the period with a comma in between the zeros in the code above. So 0.00 would become 0,00 in your case.</p>
<p>For example, if you entered <code>1000</code> in a cell, this custom format will display <code>1.00 KB</code>. <code>1000000</code> would display <code>1.00 MB</code>, etc.</p>
<p>You can use the same concept for other data sizes, but I chose some of the more common formats for purposes of this example. If you are unsure what conversion to use for your example, you can always do a Google search for the conversion you are looking for. For example a search for "<a href="https://www.google.com/search?safe=off&#038;q=1+terabyte+in+bytes" target="_blank">1 terabyte in bytes</a>", would tell you it is equivalent to 1000000000000 bytes. Using the dropdowns on the search results page you can jump between formats as well.</p>
<p><img decoding="async" src="https://excelzoom.com/wp-content/uploads/2015/05/google-file-sizes.png" alt="google-file-sizes" width="450" height="190" class="alignnone size-full wp-image-804" /></p>
<p>Here are some more helpful hints for <a href="https://excelzoom.com/7-excel-formatting-tricks/" target="_blank">other formatting tricks in Excel</a>.</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/how-to-format-numbers-as-file-sizes/">How to Format Numbers as File Sizes</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://excelzoom.com/how-to-format-numbers-as-file-sizes/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title>Excel Search Tips</title>
		<link>https://excelzoom.com/excel-search-tips/</link>
					<comments>https://excelzoom.com/excel-search-tips/#comments</comments>
		
		<dc:creator><![CDATA[Mark]]></dc:creator>
		<pubDate>Mon, 15 Dec 2014 18:49:13 +0000</pubDate>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Shortcuts]]></category>
		<guid isPermaLink="false">http://excelzoom.com/?p=707</guid>

					<description><![CDATA[<p>Most programs have a common search shortcut, CTRL+F. This shortcut pops open a search window for you to use in searching through the entire document. Often times, depending on the program, there are specific options. Excel search is no different. Excel Search Tip #1: Find All If you are working with a large set of [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/excel-search-tips/">Excel Search Tips</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Most programs have a common search shortcut, CTRL+F. This shortcut pops open a search window for you to use in searching through the entire document. Often times, depending on the program, there are specific options. Excel search is no different.</p>
<h2>Excel Search Tip #1: Find All</h2>
<p>If you are working with a large set of data, and you need to find all cells containing a particular word, number, or phrase you can easily find all cells containing the data you need.</p>
<p>Simply hit CTRL+F, type the information you need to find in the &#8220;Find what&#8221; box, and click the Find All button. A list of cells containing data that matches your search criteria will show up under the search box.</p>
<p><img decoding="async" src="https://excelzoom.com/wp-content/uploads/2014/12/find-all.png" alt="Excel Search Find All" width="400" height="263" class="aligncenter size-full wp-image-708" /></p>

<p>The post <a rel="nofollow" href="https://excelzoom.com/excel-search-tips/">Excel Search Tips</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://excelzoom.com/excel-search-tips/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Four Excel Tips to Increase Productivity</title>
		<link>https://excelzoom.com/four-excel-tips-increase-productivity/</link>
					<comments>https://excelzoom.com/four-excel-tips-increase-productivity/#respond</comments>
		
		<dc:creator><![CDATA[Mark]]></dc:creator>
		<pubDate>Mon, 24 Nov 2014 17:44:11 +0000</pubDate>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Shortcuts]]></category>
		<guid isPermaLink="false">http://excelzoom.com/?p=678</guid>

					<description><![CDATA[<p>Often times we think we know enough about Excel, or any program for that matter, and get set in our ways while preforming a particular task. Sometimes though, we are scratching our heads looking for an easier way to accomplish some of these tasks than what we have always done. Here are four Excel tips [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/four-excel-tips-increase-productivity/">Four Excel Tips to Increase Productivity</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Often times we think we know enough about Excel, or any program for that matter, and get set in our ways while preforming a particular task. Sometimes though, we are scratching our heads looking for an easier way to accomplish some of these tasks than what we have always done. Here are four Excel tips that will help increase your productivity and enhance your spreadsheets.</p>
<h2>Excel Tip #1: Insert a New Line Inside a Cell</h2>
<p>Inserting a new line in Microsoft Word is easy &#8211; just hit the Enter/Return button on your keyboard. However in Excel, pressing that button will cause you to move to the next cell down, but won&#8217;t insert a new line inside the cell you are typing in.<br />
<a href="https://excelzoom.com/wp-content/uploads/2014/11/alt-enter_newline.png"><img decoding="async" src="https://excelzoom.com/wp-content/uploads/2014/11/alt-enter_newline.png" alt="alt+enter_newline" width="350" height="135" class="aligncenter size-full wp-image-679" /></a></p>

<p>The post <a rel="nofollow" href="https://excelzoom.com/four-excel-tips-increase-productivity/">Four Excel Tips to Increase Productivity</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://excelzoom.com/four-excel-tips-increase-productivity/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Use Solver in Excel</title>
		<link>https://excelzoom.com/use-solver-excel/</link>
					<comments>https://excelzoom.com/use-solver-excel/#comments</comments>
		
		<dc:creator><![CDATA[Mark]]></dc:creator>
		<pubDate>Wed, 17 Sep 2014 18:18:52 +0000</pubDate>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Automatic]]></category>
		<category><![CDATA[Goal Seek]]></category>
		<category><![CDATA[Shortcuts]]></category>
		<guid isPermaLink="false">http://excelzoom.com/?p=625</guid>

					<description><![CDATA[<p>Solver is an add-in tool that lets you find solutions to various problems. You can use solver in Excel to run through &#8220;what-if&#8221; scenarios that might help you determine the best course of action. The &#8220;best&#8221; answer will be different for each problem, and might include maximizing profits, reducing cost, or producing the best use of [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/use-solver-excel/">How to Use Solver in Excel</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Solver is an add-in tool that lets you find solutions to various problems. You can use solver in Excel to run through &#8220;what-if&#8221; scenarios that might help you determine the best course of action. The &#8220;best&#8221; answer will be different for each problem, and might include maximizing profits, reducing cost, or producing the best use of resources.</p>

<p>Before we continue, you should check to see that Solver is installed on your version of Excel.</p>
<p>Navigate to the add-ins menu, and make sure that Solver Add-in has a check in the box next to it.</p>
<p><img decoding="async" class="aligncenter size-full wp-image-626" src="https://excelzoom.com/wp-content/uploads/2014/09/add-ins.png" alt="Solver Add-In Menu" width="302" height="378" /></p>
<p>You should then be able to find Solver in the Data tab.</p>
<p><img decoding="async" class="aligncenter size-full wp-image-627" src="https://excelzoom.com/wp-content/uploads/2014/09/data-solver.jpg" alt="Solver Data Tab" width="450" height="55" /></p>
<p>If you&#8217;re able to see Solver in the Data tab like in the screenshot above, you should be all set to use Solver in Excel.</p>
<p>To understand how to use Solver in Excel, you should know the group of cells that the add-in works with:</p>
<ul>
<li><strong>Decision Variable Cells:</strong> The values in the variable cells are adjusted by Solver when solving a problem.</li>
<li><strong>Constraint Cell:</strong> Provides Solver with the restrictions, or limits on the values that it has to work with in order to produce a result.</li>
<li><strong>Objective Cell:</strong> Solver provides the optimal value depending on the criteria provided in the Objective Cell. This cell must contain a formula.</li>
</ul>
<p>Before you start to use Solver, you will want to have a spreadsheet set up with a problem that you want to solve. For demonstration purposes we will work with a spreadsheet that is trying to determine how many of four different types of &#8220;Widgets&#8221; to manufacture in order to maximize profits.</p>
<p>We will assume that each Widget produces the following profits:</p>
<ul>
<li>Widget A: $25</li>
<li>Widget B: $35</li>
<li>Widget C: $45</li>
<li>Widget D: $55</li>
</ul>
<p>Assuming there were no constraints, and we could manufacture and sell Widget D just as easily as the other Widgets, we should drop Widgets A-C and just focus on Widget D.</p>
<p>However in real life there are constraints such as time to produce, availability of materials, etc.</p>
<p>Let&#8217;s also assume the following constraints for each Widget:</p>
<ul>
<li>Widget A Requires:
<ul>
<li>Part A: 4</li>
<li>Part B: 6</li>
<li>Time (hours): 0.25 (15 minutes)</li>
</ul>
</li>
<li>Widget B Requires:
<ul>
<li>Part A: 6</li>
<li>Part B: 5</li>
<li>Time (hours): 0.25 (15 minutes)</li>
</ul>
</li>
<li>Widget C Requires:
<ul>
<li>Part A: 4</li>
<li>Part B: 8</li>
<li>Time (hours): 0.5 (30 minutes)</li>
</ul>
</li>
<li>Widget D Requires:
<ul>
<li>Part A: 6</li>
<li>Part B: 10</li>
<li>Time (hours): 0.5 (30 minutes)</li>
</ul>
</li>
</ul>
<p>We also have a maximum of 17,000 Part A, 50,000 Part B, and 2,000 hours of labor.</p>
<p>What we are looking to do is solve the following equation, where Y<sub>A</sub> is the quantity of Widget A, Y<sub>B</sub> is the quantity of Widget B, and so on.</p>
<p>Maximize: 25 Y<sub>A</sub> + 35 Y<sub>B</sub> + 45 Y<sub>C</sub> + 55 Y<sub>D</sub></p>
<p>Subject to these constraints:</p>
<p>Part A: 4 Y<sub>A</sub> + 6 Y<sub>B</sub> + 4 Y<sub>C</sub> + 6 Y<sub>D</sub> &lt;= 17,000<br />
Part B: 6 Y<sub>A</sub> + 5 Y<sub>B</sub> + 8 Y<sub>C</sub> + 10 Y<sub>D</sub> &lt;= 50,000<br />
Time: 0.25 Y<sub>A</sub> + 0.25 Y<sub>B</sub> + 0.5 Y<sub>C</sub> + 0.5 Y<sub>D</sub> &lt;= 2,000</p>
<p>Additionally, another constraint is you can&#8217;t build a negative number of any of the Widgets, so:</p>
<p>Y<sub>A</sub> + Y<sub>B</sub> + Y<sub>C</sub> + Y<sub>D</sub> &gt;= 0</p>

<h3>Set-up Your Spreadsheet With Data</h3>
<p>We can then build a spreadsheet with this information:</p>

<p>In the spreadsheet all the numbers, other than the numbers in column G, were manually entered. There are four cells with formulas:</p>
<ul>
<li>G5: =SUMPRODUCT(C3:F3,C4:F4) &#8211; Note this is the same as saying =C3*C4+D3*D4+E3*E4+F3*F4.</li>
<li>G8: =SUMPRODUCT(C8:F8:$C$4:$F$4) &#8211; In this formula, we add the $ signs to keep the reference to cells C4:F4 static when we eventually copy the formula to other cells.</li>
<li>G9-G10: Copy the formula from G8 down to G9 and G10. Since we used the $ signs in the formula in G8, the formula in G9 and G10 will retain the references to cells C4:F4 (because this part had the $ signs), but will update itself to reference C9:F9, and C10:F10 (since this part did not have $ signs).</li>
</ul>
<h3>Use Solver to Maximize Profits:</h3>
<p>Now, to find out the maximum profit, we are going to let Solver run through the scenario and provide us with an answer. First we need to tell Solver what we are trying to do.</p>
<ul>
<li>On the Data tab, click on Solver.</li>
<li>Click in the Set Objective field and type $G$5, or click on cell G5. This tells Solver which cell we want to optimize.</li>
<li>The To option should be set to Max. This tells Solver that we want to maximize the value in cell G5.</li>
<li>In the By Changing Variable Cells box, type $C$4:$F$4, or highlight the range C4:F4 with your mouse. This tells Solver which cells should change in order to maximize the value in cell G5.</li>
<li>Next to the Subject to Constraints box click the Add button. Here we will provide the constraints that we described in the math formula above.
<ul>
<li>We want the resources to be limited by the quantities we have available, so in the Cell Reference box (left side), enter $G$8:$G$10, or select the range G8:G10 with your mouse.</li>
<li>The dropdown box (middle) should be set to &lt;=.</li>
<li>The Constraint box (right side) should be set to the maximum quantities available, which in our case is $H$8:$H$10.</li>
<li>Click OK.</li>
</ul>
</li>
<li>If we had additional constraints to enter, we could do so by clicking the Add button. In this case we want to make sure the Units to produce are not negative, we could enter a new constraint of $C$4:$F$4 &gt;= 0.</li>
<li>Since all of our variables are constrained, it won&#8217;t change the outcome if you check or uncheck the box for Make Unconstrained Variables Non-Negative.</li>
<li>Click Solve.</li>
</ul>

<p>Solver will run through the problem and provide the optimal number of each Widget type to produce in order to maximize profits. You should see a message saying that &#8220;Solver found a solution&#8221;.</p>

<p>In this scenario, in order to maximize profits we need to produce 3,500 of Widget C, 500 of Widget D, and none of Widgets A or B.</p>
<h3>Find Ways to Further Maximize Profits:</h3>
<p>If we want to generate an Answer report, click on Answer under the Reports section in the Solver Results window. Solver will create an Answer Report tab to the left of the tab you are working on.</p>

<p>The Answer Report will show you the original and final values of the objective and variable cells. It will also list out the resources that prevented Solver from further maximizing our profits.</p>
<p>In this case, Part A and Time were both fully used up. In the report their status is &#8220;Binding&#8221;, with a slack of 0. Part B was the only resource that was not binding, as there were 17,000 units left over.</p>
<p>In the real world we could use this information to try to determine if we could possibly acquire more of Part A, and hire more employees to further maximize the profits.</p>
<p>If this wasn&#8217;t a possibility, we could see if there was something else we could make with the 17,000 remaining units of Part B.</p>
<h3>Other Ways to Use Solver in Excel:</h3>
<p>We just ran through a simple scenario to maximize the profit of a widget manufacturer. However the usage of Solver is not limited to producing widgets.</p>
<p>You can use Solver in Excel to help allocate money to certain investments, purchasing real-estate, or scheduling staff at a multi-location business.</p>
<p>Do you use Solver in Excel? Let&#8217;s hear about how you use it in the comments.</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/use-solver-excel/">How to Use Solver in Excel</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://excelzoom.com/use-solver-excel/feed/</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
			</item>
		<item>
		<title>Delete Every Other Row in Excel</title>
		<link>https://excelzoom.com/delete-every-other-row-in-excel/</link>
					<comments>https://excelzoom.com/delete-every-other-row-in-excel/#comments</comments>
		
		<dc:creator><![CDATA[Mark]]></dc:creator>
		<pubDate>Mon, 28 Jul 2014 22:23:13 +0000</pubDate>
				<category><![CDATA[Macros]]></category>
		<category><![CDATA[Row]]></category>
		<category><![CDATA[Shortcuts]]></category>
		<category><![CDATA[VBA]]></category>
		<guid isPermaLink="false">http://excelzoom.com/?p=593</guid>

					<description><![CDATA[<p>Sometimes you will copy and paste data into a worksheet from another file, a web page, or some other source that isn&#8217;t formatted the way you want it. Often times there is extra irrelevant data like row numbers or other miscellaneous information that gets added in when you paste the data. If the unneeded data [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/delete-every-other-row-in-excel/">Delete Every Other Row in Excel</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Sometimes you will copy and paste data into a worksheet from another file, a web page, or some other source that isn&#8217;t formatted the way you want it. Often times there is extra irrelevant data like row numbers or other miscellaneous information that gets added in when you paste the data. If the unneeded data is on it&#8217;s own row, you can delete every other row easily with the macro in this tutorial.<br />
</p>
<h2>Delete Every Other Row in Excel</h2>
<p>This tutorial will require you to use the Visual Basic Editor to create a macro.</p>
<p>In earlier versions of Excel (prior to 2007), click <em>Tools</em> &gt; <em>Macro</em> &gt; <em>Visual Basic Editor</em>.</p>
<p>In Excel 2007 or later, click <em>Developer</em> tab, and then <em>Visual Basic</em> in the <em>Code</em> group.</p>
<p>In the <em>Project</em> pane, right click your workbook &gt; <em>Insert</em> &gt; <em>Module.</em></p>
<p><img decoding="async" class="aligncenter size-full wp-image-594" src="https://excelzoom.com/wp-content/uploads/2014/07/insert-module.png" alt="Delete Every Other Row" width="406" height="205" /></p>
<p>Next, double click the new module (usually Module1 unless there were already modules there) under your workbook. Paste the following code into the new module:</p>

<p><strong>IMPORTANT: Create a backup of your file just in case, because there is no easy way of retrieving the data that is deleted after this macro is run.</strong></p>
<p>Depending on your needs, you may need to change the <code>Y = False</code> to <code>Y = True</code> to delete the correct rows. False will delete the even row numbers, and True will delete the odd row numbers. </p>
<p>To use this macro, select the rows that contain the data where every other row should be deleted. The macro will only work on the selected range, so if you have other data outside of a specific range, it won&#8217;t be touched by this macro if you don&#8217;t select it first.</p>
<p>Also, note that the True/False setting discussed earlier refers to the actual row numbers in Excel, and not the 1st, 3rd, 5th etc. or 2nd, 4th, 6th etc. rows in your selected range. For example, if you want to delete every other row with Y=False and select rows 2-8, Excel rows 2, 6, and 8 will be deleted. If you select rows 2-8 with Y=True, Excel rows 3, 5, and 7 will be deleted.</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/delete-every-other-row-in-excel/">Delete Every Other Row in Excel</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://excelzoom.com/delete-every-other-row-in-excel/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>10 Excel Tips For Increased Productivity</title>
		<link>https://excelzoom.com/10-excel-tips-increased-productivity/</link>
					<comments>https://excelzoom.com/10-excel-tips-increased-productivity/#comments</comments>
		
		<dc:creator><![CDATA[Mark]]></dc:creator>
		<pubDate>Fri, 04 Jul 2014 20:42:10 +0000</pubDate>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Automatic]]></category>
		<category><![CDATA[Cell]]></category>
		<category><![CDATA[Formats]]></category>
		<category><![CDATA[Shortcuts]]></category>
		<guid isPermaLink="false">http://excelzoom.com/?p=566</guid>

					<description><![CDATA[<p>Microsoft Excel has tons of uses available to its users. But not everyone knows all the features that Excel has to offer. Some Excel tips will help you instantly become more productive, or use Excel more efficiently. Click through to see our top 10 Excel tips.</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/10-excel-tips-increased-productivity/">10 Excel Tips For Increased Productivity</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Microsoft Excel has tons of uses available to its users. But not everyone knows all the features that Excel has to offer. Some Excel tips will help you instantly become more productive, or use Excel more efficiently.</p>
<p>Click through to see our top 10 Excel tips.</p>

<p>The post <a rel="nofollow" href="https://excelzoom.com/10-excel-tips-increased-productivity/">10 Excel Tips For Increased Productivity</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://excelzoom.com/10-excel-tips-increased-productivity/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
	</channel>
</rss>
