<?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>Tips Archives - Excel Zoom</title>
	<atom:link href="https://excelzoom.com/tag/tips/feed/" rel="self" type="application/rss+xml" />
	<link>https://excelzoom.com/tag/tips/</link>
	<description>...because it&#039;s more than just a calculator</description>
	<lastBuildDate>Mon, 04 Mar 2019 17:41:27 +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>Tips Archives - Excel Zoom</title>
	<link>https://excelzoom.com/tag/tips/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>7 Things CPA Should know about VBA Macros</title>
		<link>https://excelzoom.com/7-things-cpa-know-vba/</link>
					<comments>https://excelzoom.com/7-things-cpa-know-vba/#respond</comments>
		
		<dc:creator><![CDATA[Mark]]></dc:creator>
		<pubDate>Thu, 15 Jun 2017 19:17:20 +0000</pubDate>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Macros]]></category>
		<category><![CDATA[VBA]]></category>
		<guid isPermaLink="false">http://excelzoom.com/?p=2658</guid>

					<description><![CDATA[<p>VBA stands for visual basic for application. It is the default programming language for MS Office. If you want to program MS Excel you should know how to work with VBA Macros. VBA is at the same time is fun and a source of improving productivity. Actually it provides an opportunity to do things what canot be [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/7-things-cpa-know-vba/">7 Things CPA Should know about VBA Macros</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>VBA stands for visual basic for application. It is the default programming language for MS Office. If you want to program MS Excel you should know how to work with VBA Macros. VBA is at the same time is fun and a source of improving productivity. Actually it provides an opportunity to do things what canot be done in usual way or to have features that are not available by default in MS Excel.</p>
<p>Unlike usual programming languages that take only code to create a program, we can also record the actions through a feature in MS Office that is called MACRO Recorder. The Macro Recorder simply records the sequence of actions taken by us. Since it is object oriented language, the actions are recorded as actions taken on a set of objects. And then it could be re-run.</p>
<p>VBA, just like other programming language has a specific syntax and style of coding. It is an object oriented language (a programming methodology that is related to objects).</p>
<p>In this post we will discuss the 7 important facts about VBA and Macros.</p>
<h2><strong>Making macros available on all MS Excel worksheet:</strong></h2>
<p>When you are recording VBA macros, the menu prompts you to save the macro at certain location. You can choose between these two locations:</p>
<ol>
<li>This workbook or the workbook you are currently working on</li>
<li>Personal.xlsb</li>
</ol>
<p>If you choose to save the macro in the current workbook, it will not be available in other opened workbooks. In order to use a single macro in several other workbooks, you need to save it in personal.xlsb.</p>
<p>The personal.xlsb is by default a hidden file. It can not be seen until we unhide it. When you will open the MS Excel (and does not open any file) you can see it by pressing “unhide” from View / Unhide.</p>
<p><img fetchpriority="high" decoding="async" class="aligncenter size-full wp-image-2668" src="https://excelzoom.com/wp-content/uploads/2017/06/image001-1.jpg" alt="How to unhide the personal.xlsb" width="404" height="131" /></p>
<h2><strong>Assign Shortcut Key for repeatedly running VBA macros:</strong></h2>
<p>You assign a short cut key either through VBA Macro menu or by using code with in the macro. If you are looking for assigning it through menu, you can go to Developer’s Tab &gt; Macros and select the desired Macro and press Options. Here you can add the Shortcut key (and the description of the macro as well).</p>
<p><img decoding="async" class="aligncenter wp-image-2669" src="https://excelzoom.com/wp-content/uploads/2017/06/image003.jpg" alt="Assigning Shortcut Key to Macros" width="416" height="282" /></p>
<p>The second approach is to add few lines of the code in the macro body:<br />
<code><br />
Application.MacroOptions Macro:="PERSONAL.XLSB!Macro2", Description:="", _<br />
ShortcutKey:="k"<br />
</code></p>
<h2><strong>Type of codes you can find across internet:</strong></h2>
<p>There are three types of VBA macros you can come across from Internet. The first one is Sub() that is a macro that runs and when you execute the macro to do certain task. This is the most common type of macro you will come across. The second type is <em>not</em> sub but a function – just like functions SUM() in the excel but this is user defined function or UDF and also uses VBA code. The third one is event procedures that work when certain event is done for example a macro that runs on enter certain value or macro that runs when you open your worksheet or press “Enter” key &#8211; all such are examples of event procedures.</p>
<p>It depends on your need what you want to achieve. For example if you have want to format cells <em>to be yellow colored, bold and italic</em> you can record a macro and run it through shortcut key any number of time.</p>
<p>If you have a very complex formula that you don’t want to type again and again, you can define a UDF for that and store in your file for future use.</p>
<p>If you want to display the message “welcome user” when file opens, you can add an <em>event </em>called “Workbook_Open()” to your code.</p>
<h2><strong>Where to put the set of code you found from internet:</strong></h2>
<p>it is equally important you place your code in the right place. Otherwise it would not work. Note that you need to:</p>
<p>Put Subs and function in Module in the workbook. To insert the module you need to go to Insert&gt;Module select the module and double click to open it and then paste the code. You can put multiple codes in the same module!</p>
<p>For events you need to place in the specific sheet. For example if you want to change the text to bold and italic you need to place it in the specific sheet.</p>
<p><img decoding="async" class="aligncenter wp-image-2670 size-full" src="https://excelzoom.com/wp-content/uploads/2017/06/image005.jpg" alt="Inserting Modules and VBA Codes" width="419" height="320" /></p>
<h2><strong>You need to save your workbook as macro enabled worksheet!</strong></h2>
<p>A sheet containing macro is different from a normal worksheet and you need to save it as macro enabled worksheet. To do so, when pressing save button, you need to select the second option from the file format menu – i.e. Excel Macro-enabled workbook (*.xlsm)</p>
<p><img decoding="async" class="aligncenter wp-image-2671 size-full" src="https://excelzoom.com/wp-content/uploads/2017/06/image007.jpg" alt="Saving as Macro-Enabled Workbook" width="346" height="151" /></p>
<h2><strong>Learn how to use the immediate window in VBA Editor:</strong></h2>
<p>The immediate window in the one that is just below the code editor widows. If it is not visible you can enable it by pressing Ctrl+G. The immediate window is helpful in checking the small pieces of code. For example if you want to check the address of current or active cell you can use it like ?activecell.address. pressing enter will give you the address of the cell and for value you can use ?activecell.value will give you the value of the active cell.</p>
<p><img decoding="async" class="aligncenter wp-image-2672 size-full" src="https://excelzoom.com/wp-content/uploads/2017/06/image009.jpg" alt="Using Immediate Window in VBA Mode" width="245" height="122" /></p>
<h2><strong>The VBA Macros uses methods to accomplish various tasks:</strong></h2>
<p>VBA works on various objects using methods. Method is just like a special set of instructions that works with an object. And not all methods work with all objects. If you are planning to write a macro, make sure to do a research on methods available for that particular object. This will ease up your task by using code that is already available for you and you will not need to reinvent the wheel.</p>
<p>The best place to learn about methods is to the VBA Help. While VBA editor window is open, press F1 or if you are interested exploring the object-method relationship use press F2 (while VBA editor is active). You can see each object followed by the method available for it. Besides the help page <a href="https://msdn.microsoft.com/en-us/library/office/ee861528.aspx">MS Office development center</a> has lot of information that can help.</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/7-things-cpa-know-vba/">7 Things CPA Should know about VBA Macros</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://excelzoom.com/7-things-cpa-know-vba/feed/</wfw:commentRss>
			<slash:comments>0</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>How to Create Combination Charts in Excel</title>
		<link>https://excelzoom.com/introduction-to-combination-charts/</link>
					<comments>https://excelzoom.com/introduction-to-combination-charts/#comments</comments>
		
		<dc:creator><![CDATA[Mark]]></dc:creator>
		<pubDate>Mon, 01 May 2017 15:33:50 +0000</pubDate>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Charts]]></category>
		<category><![CDATA[Formats]]></category>
		<guid isPermaLink="false">http://excelzoom.com/?p=2417</guid>

					<description><![CDATA[<p>Most Excel users know how to create either a bar chart or a line chart to visually show a set of data.  One way to really step up your game and graphically show multiple relationships across two or more sets of data is to use a combination chart.  This powerful function will allow you to combine [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/introduction-to-combination-charts/">How to Create Combination Charts in Excel</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Most Excel users know how to create either a bar chart or a line chart to visually show a set of data.  One way to really step up your game and graphically show multiple relationships across two or more sets of data is to use a combination chart.  This powerful function will allow you to combine a bar chart and a line graph and add a Y-axis (vertical line) to express broader data linkages and drive insight that might not be apparent otherwise.</p>
<p>For the sake of this post, we will plot two different quantities of data into a combination chart expressed with bars and a line graph and also show you a lesser-known trick allowing you to graph the data logarithmically, which can sometimes yield surprising insight.</p>
<h2><strong>Reasons for using combination charts:</strong></h2>
<p>A combination chart could be used for variety of reasons, for example:</p>
<ul>
<li>When you have more data to plot and want to differentiate one quantity from the other</li>
<li>When the values from one series is too large or small compared to the other data</li>
</ul>
<p>So let’s see how can we create a combination chart and make it more meaningful and professional.</p>

<h2><strong>Our Data:</strong></h2>
<p>We have created a set of sample data that we will be using throughout this post.  It is evident that sales volume is far more than the number of visitors in this table:</p>
<p><img decoding="async" class="aligncenter size-full wp-image-2418" src="https://excelzoom.com/wp-content/uploads/2017/04/image001-1.jpg" alt="" width="199" height="186" /></p>
<h2><strong>First Step – Creating the bar chart</strong></h2>
<p>Starting with Sales we will create a simple bar chart to plot the data. To insert a Bar Chart go to <strong>Insert &gt; Bar Chart</strong> while the range B2:C16 is already selected. (Or the range already selected press <strong>Alt&gt;N&gt;C&gt;Enter</strong> to insert the chart. A basic and standard formatted bar chart will be displayed as a result.</p>
<h2><strong>Second Step – Adding No. of Visitors </strong></h2>
<p>Now that we want to create a combination chart, we will be adding another series to this chart – No. of visitors.</p>
<p>For that: Right <strong>Click chart&gt;Select Data&gt;Add New Series </strong>and now insert the Series Name and select the range <strong>D3:D16</strong>.</p>
<p><img decoding="async" class="aligncenter size-full wp-image-2419" src="https://excelzoom.com/wp-content/uploads/2017/04/image002.jpg" alt="" width="537" height="296" /></p>
<p>When pressed Ok, the chart will be updated. We have a new series added to the chart but we can’t see it practically on the cart – the values are too small to be visible on chart.</p>
<p><img decoding="async" class="aligncenter size-full wp-image-2420" src="https://excelzoom.com/wp-content/uploads/2017/04/image003.jpg" alt="" width="629" height="331" srcset="https://excelzoom.com/wp-content/uploads/2017/04/image003.jpg 629w, https://excelzoom.com/wp-content/uploads/2017/04/image003-600x316.jpg 600w" sizes="(max-width: 629px) 100vw, 629px" /></p>
<p>What we need to do is to plot it on secondary Y-Axis to get a scale that is appropriate to display the variable. Since the series is not easily visible on chart, we will be selecting it from <strong>Format</strong> menu, select available features that can be formatted and finally select <strong>Series “Visitors”</strong> and press <strong>Format Selection </strong>to format it.</p>
<p><img decoding="async" class="aligncenter size-full wp-image-2421" src="https://excelzoom.com/wp-content/uploads/2017/04/image004-1.jpg" alt="" width="850" height="239" srcset="https://excelzoom.com/wp-content/uploads/2017/04/image004-1.jpg 850w, https://excelzoom.com/wp-content/uploads/2017/04/image004-1-600x169.jpg 600w" sizes="(max-width: 850px) 100vw, 850px" /></p>
<p>Once selected we need to plot it on secondary axis.</p>
<p><img decoding="async" class="aligncenter size-full wp-image-2422" src="https://excelzoom.com/wp-content/uploads/2017/04/image005.jpg" alt="" width="495" height="309" /></p>
<p>With this data plotted on secondary axis, select the series (that is now easily visible and change the chart type to line:</p>
<p><img decoding="async" class="aligncenter wp-image-2423" src="https://excelzoom.com/wp-content/uploads/2017/04/image006-2.jpg" alt="" width="691" height="190" srcset="https://excelzoom.com/wp-content/uploads/2017/04/image006-2.jpg 789w, https://excelzoom.com/wp-content/uploads/2017/04/image006-2-600x165.jpg 600w" sizes="(max-width: 691px) 100vw, 691px" /></p>
<h2><strong>Improving the appearance of the chart:</strong></h2>

<p>For the modified chart, we have:</p>
<ul>
<li>Removed the data series “Month” that was plotted to have more space in between bars.</li>
<li>Muted the color tone of horizontal grid lines, so that we can focus on data rather then grid lines.</li>
<li>Muted the overall tone of the chart – used light colors instead of shocking red.</li>
<li>Markers in green turned to round and gray in the new chart.</li>
<li>Added a title to the chart.</li>
</ul>
<p>That was it &#8211; we now have our new combination chart!</p>
<h2><strong>Yet another option to plot the data – using LN() to plot log values:</strong></h2>
<p>What we considered in the preceding lines was a data from a business report, if we have been using “scientific data” and our audience has that mathematics background, we can <em>plot the log values </em>instead of actual values for sales volume and No. of visitors using the function <strong>LN(): </strong></p>
<p><img decoding="async" class="aligncenter wp-image-2424" src="https://excelzoom.com/wp-content/uploads/2017/04/image007-1.jpg" alt="" width="742" height="201" srcset="https://excelzoom.com/wp-content/uploads/2017/04/image007-1.jpg 848w, https://excelzoom.com/wp-content/uploads/2017/04/image007-1-600x163.jpg 600w" sizes="(max-width: 742px) 100vw, 742px" /></p>
<p>We can see that though we have not used any secondary axis, the values are visible and we can see a trend in them as well – but this should be done keeping in view the understandability of the target audience.</p>
<p>This is all for this post, please downloads the <a href="https://www.dropbox.com/s/iwykqn3qyq0etf6/www.excelzoom.com_Combination%20Charts.xlsx?dl=1">sample file</a> for practice.</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/introduction-to-combination-charts/">How to Create Combination Charts in Excel</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://excelzoom.com/introduction-to-combination-charts/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Adding and Subtracting Time in Excel</title>
		<link>https://excelzoom.com/adding-and-subtracting-time-in-excel/</link>
					<comments>https://excelzoom.com/adding-and-subtracting-time-in-excel/#respond</comments>
		
		<dc:creator><![CDATA[Mark]]></dc:creator>
		<pubDate>Mon, 26 Oct 2015 18:07:15 +0000</pubDate>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Formula]]></category>
		<category><![CDATA[Sum]]></category>
		<guid isPermaLink="false">http://excelzoom.com/?p=876</guid>

					<description><![CDATA[<p>Adding and subtracting time in Excel is something that people often times have a difficult time figuring out how to do correctly. Often times you are doing it right, but the results don&#8217;t seem to be displaying correctly. Other times you may give up doing it the &#8220;correct&#8221; way and set up an hours column [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/adding-and-subtracting-time-in-excel/">Adding and Subtracting Time in Excel</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Adding and subtracting time in Excel is something that people often times have a difficult time figuring out how to do correctly. Often times you are doing it right, but the results don&#8217;t seem to be displaying correctly. Other times you may give up doing it the &#8220;correct&#8221; way and set up an hours column and a minutes column. Then add the minutes, divide by 60, and add it to the total hours.</p>
<p>If you don&#8217;t want your head to hurt by doing it that way, there&#8217;s a much easier way to add and subtract time in Excel.</p>
<h2>Adding Time in Excel</h2>
<p><br />
Adding time is just as easy as adding any other number in Excel using the SUM function. Simply populate your list with the times formatted as hours:minutes like this 4:25 for four hours and 25 minutes.</p>
<p>Next, to add the time simply click the ∑ AutoSum button in the Editing Group on the Home tab while in the cell where you want the total to be. Make sure the correct cells are included in the AutoSum, and hit Enter. In the screenshot below, I wanted the total in cell B5, so I clicked that cell then clicked AutoSum. After checking that it correctly added cells B2:B4 I hit Enter, which gave me my total of 15 hours and 48 minutes.</p>
<p><a href="https://excelzoom.com/wp-content/uploads/2015/10/add-time.png"><img decoding="async" class="aligncenter wp-image-877 size-medium" src="https://excelzoom.com/wp-content/uploads/2015/10/add-time-300x142.png" alt="Adding Time in Excel" width="300" height="142" /></a></p>
<p>Now, what happens if we are adding times that exceed 24 hours? We end up with a messy result if we don&#8217;t do a bit of formatting first.</p>
<p>In the same example as the screenshot above, if I make Job 1 take 14:25 instead of 4:25, the AutoSum changes to 1:48. Clearly that is not correct.</p>
<p><a href="https://excelzoom.com/wp-content/uploads/2015/10/add-time-24hrs-no-format.png"><img decoding="async" class="aligncenter wp-image-878 size-medium" src="https://excelzoom.com/wp-content/uploads/2015/10/add-time-24hrs-no-format-300x142.png" alt="Adding Time Greater Than 24 Hours in Excel" width="300" height="142" /></a></p>
<p>In order to get it to display the correct total (25:48), we need to format the total time. To do this, right click the total cell and select Format Cells.</p>
<p>In the Category box to the left, select &#8220;Custom&#8221;. Then in the Type box to the right, enter <code>[h]:mm</code>.</p>
<p>By using the left and right square brackets around the letter &#8220;h&#8221;, you are telling Excel that it can exceed 24 hours in the display.</p>
<p><a href="https://excelzoom.com/wp-content/uploads/2015/10/format-time-cells.png"><img decoding="async" class="aligncenter wp-image-879 size-medium" src="https://excelzoom.com/wp-content/uploads/2015/10/format-time-cells-300x271.png" alt="Adding and subtracting time in Excel cell formats" width="300" height="271" /></a></p>
<p>The previous examples showed how to get the aggregate amount of time. But what if you wanted to add an amount of time to a given time of day?</p>
<p>Say we were trying to figure out what time of day it would be 8 hours after say 9 AM. With the TIME function, we can add any number of hours, minutes, and seconds to a given time to get the time it would be after that length of time.</p>
<p>In this case we would have 9AM in one cell and add TIME(8,0,0) to it. The numbers in the parenthesis are 8 for the number of hours we want to add, the first 0 for the number of minutes, and the last 0 for the number of seconds.</p>
<p><a href="https://excelzoom.com/wp-content/uploads/2015/10/add-time-to-time.png"><img decoding="async" class="aligncenter wp-image-880 size-medium" src="https://excelzoom.com/wp-content/uploads/2015/10/add-time-to-time-300x142.png" alt="add time to time in Excel" width="300" height="142" /></a></p>
<p>You can change the numbers in the TIME portion of the formula to get any number of hours, minutes, or seconds to add to another time this way.</p>
<p>Read on to learn about subtracting time in Excel.</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/adding-and-subtracting-time-in-excel/">Adding and Subtracting Time in Excel</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://excelzoom.com/adding-and-subtracting-time-in-excel/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Count Cells Meeting Certain Criteria</title>
		<link>https://excelzoom.com/count-cells-meeting-certain-criteria/</link>
					<comments>https://excelzoom.com/count-cells-meeting-certain-criteria/#respond</comments>
		
		<dc:creator><![CDATA[Mark]]></dc:creator>
		<pubDate>Wed, 14 Oct 2015 21:02:15 +0000</pubDate>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Counter]]></category>
		<category><![CDATA[Formula]]></category>
		<guid isPermaLink="false">http://excelzoom.com/?p=861</guid>

					<description><![CDATA[<p>Whenever you are dealing with lists it seems like you always are looking to count how many of a certain item is in the list. Maybe you want to count how many cars were sold by a certain salesperson, or how many times an employee called out sick. Luckily Excel makes it easy to count [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/count-cells-meeting-certain-criteria/">Count Cells Meeting Certain Criteria</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Whenever you are dealing with lists it seems like you always are looking to count how many of a certain item is in the list. Maybe you want to count how many cars were sold by a certain salesperson, or how many times an employee called out sick. Luckily Excel makes it easy to count cells meeting certain criteria just like this.</p>
<h2>Count cells meeting certain criteria with Excel&#8217;s COUNTIF function</h2>
<p><img decoding="async" class="size-full wp-image-862 alignleft" src="https://excelzoom.com/wp-content/uploads/2015/10/countif-setup.png" alt="countif-setup" width="303" height="388" />Let&#8217;s say we have a list of dates that cars were sold on a used car lot, the salesperson who sold the car, and the make of the car. This list is great information, but we want to know who sold the most cars. You can see the screenshot of this list to the left.</p>
<p>Using Excel&#8217;s COUNTIF function we can count cells meeting certain criteria to figure out who sold the most.</p>
<p>To make our lives easier, let&#8217;s put a list of the names of each member of the sales team either off to the side of this sales list or on another sheet. Joe, Bill, Max, and Sam. In my sheet I have this list in cells E2:E5.</p>

<p>In cell F1, I have the following formula:</p>
<pre>=COUNTIF($B$2:$B$14,E2)</pre>
<p>This formula takes the range B2:B14 where we have the names of the salespeople who sold the cars, and counts how many times they appear in that range. E2 contains a salesperson&#8217;s name, so it uses that cell as the criteria to match against. We could have just as easily typed in the salesperson&#8217;s name in place of E2 in the formula, but since we have several names to look up we can use the cell reference to avoid having to re-type the formula.</p>
<p>Next, copy the formula down to fill in next to the remaining salespeople to get the results. If you need to visualize this, check out the screenshot at the end of this article.</p>
<p>The results based on the list in the screenshot are Joe: 3, Bill : 4, Max: 3, Sam: 3.</p>
<p>This is great, but looking at the list it seems like Bill stopped selling as many cars after May. What gives Bill?</p>
<h2>Count cells meeting multiple criteria with Excel&#8217;s COUNTIFS Function</h2>
<p>What if we wanted to find out who sold the most cars in a certain time period? We can use Excel&#8217;s COUNTIFS function to count cells meeting multiple criteria.</p>
<p>I want to find out who sold the most cars each month, but the same concept we&#8217;re using could apply for any time period &#8211; weekly, quarterly, annually, or any other custom time period you would need to look up.</p>
<p>Continuing from the earlier example, let&#8217;s add columns for each month next to the total we set up in column F. So, column G would be January, H would be February, etc.</p>
<p>Now, since Excel refers to dates using a number rather than the normal month/day/year format we might be accustomed to we have to enter the range of dates we are interested in looking at. This may not be an ideal solution, but it does allow for custom date ranges.</p>
<p>Below our table of salespeople and months let&#8217;s add the first day of the month and the last day of the month so we can use those dates in our formula. In my sheet, I entered the first day of the month in row 7 of the month&#8217;s column, and the last day below it in row 8.</p>

<p>In cell G2, which on my spreadsheet is the cell that will display Joe&#8217;s sales tally for January, enter the following formula:</p>
<pre>=COUNTIFS($A$2:$A$14,"&gt;="&amp;G$7,$A$2:$A$14,"&lt;="&amp;G$8,$B$2:$B$14,$E2)</pre>
<p>This formula is similar to the COUNTIF formula we used earlier, except COUNTIFS allows you to specify multiple criteria to fine tune the results.</p>
<p>You will also want to copy and paste this formula down to the other salespeople, and across to fill in for the other months.</p>
<p>We&#8217;ll break this formula down to each set of individual criterion.</p>
<p><strong>$A$2:$A$14,&#8221;&gt;=&#8221;&amp;G$7</strong></p>
<p>This looks at cells A2:A14 where our dates are and wants to find any that are greater or equal to cell G7, where I have the first day of the month listed.</p>
<p>Note that the date used in G7 is simply the start date of the time period we&#8217;re interested in. It doesn&#8217;t have to be the first day of a month, although in this example it is. It could be the first day of the quarter, week, or some other custom time period. Same idea applies to the last day of the month. Use whatever beginning and ending dates that make sense for your situation.</p>
<p><strong>$A$2:$A$14,&#8221;&lt;=&#8221;&amp;G$8</strong></p>
<p>This basically uses the same logic as the previous criterion, except it is looking for any dates that are less than or equal to the last day of the month, which are in cell G8.</p>
<p><strong>$B$2:$B$14,$E2</strong></p>
<p>Finally we use the same logic that we used in the previous COUNTIF formula to limit the results to only one salesperson. Cells B2:B14 contain the salesperson&#8217;s name who sold a car, while E2 contain the salesperson that we&#8217;re looking up.</p>
<p>Putting all that logic together in plain English, we&#8217;re asking COUNTIFS to count any cells where the date is greater than or equal to the first day of the month and less than or equal the last day of the month, and where the salesperson is the one at the beginning of the row.</p>

<p>If we wanted to also find out who sold the most of a certain make of car, we could add the condition $C$2:$C$14,&#8221;Honda&#8221;. This would show all the Hondas sold by a particular salesperson in a given month.</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/count-cells-meeting-certain-criteria/">Count Cells Meeting Certain Criteria</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://excelzoom.com/count-cells-meeting-certain-criteria/feed/</wfw:commentRss>
			<slash:comments>0</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>Microsoft Excel for iPhone</title>
		<link>https://excelzoom.com/microsoft-excel-iphone/</link>
					<comments>https://excelzoom.com/microsoft-excel-iphone/#respond</comments>
		
		<dc:creator><![CDATA[Mark]]></dc:creator>
		<pubDate>Fri, 13 Feb 2015 21:31:22 +0000</pubDate>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[App]]></category>
		<guid isPermaLink="false">http://excelzoom.com/?p=773</guid>

					<description><![CDATA[<p>In today&#8217;s increasingly mobile world, it seems like the productivity we have grown to associate with our desktop environments should start to migrate over to our mobile world. The Microsoft Excel app for the iPhone, iPad, and iPod touch appears to bridge this gap. Microsoft Excel for iPhone The Microsoft Excel app allows users to [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/microsoft-excel-iphone/">Microsoft Excel for iPhone</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>In today&#8217;s increasingly mobile world, it seems like the productivity we have grown to associate with our desktop environments should start to migrate over to our mobile world. The <a title="Microsoft Excel App" href="https://itunes.apple.com/us/app/microsoft-excel/id586683407?mt=8" target="_blank">Microsoft Excel app</a> for the iPhone, iPad, and iPod touch appears to bridge this gap.</p>

<h2>Microsoft Excel for iPhone</h2>
<p>The Microsoft Excel app allows users to view, create and edit spreadsheets in this free version of the app with the familiar Microsoft Excel look paired alongside the iOS touchscreen experience.</p>
<p>The app provides the following Excel Spreadsheet features:</p>
<ul>
<li>Formulas, tables, charts, comments, PivotTables, sparklines, conditional formatting, sorting, filtering, and more.</li>
<li>Same look to the spreadsheet, whether you are viewing it on the app or on a PC or Mac.</li>
<li>Access Excel spreadsheets from email attachments, OneDrive, Dropbox, or SharePoint.</li>
<li>If using an AirPrint printer, you can even print an entire workbook, a worksheet, or a specific range of cells to your AirPrint printer.</li>
<li>Includes a special formula keyboard, which allows formulas and numbers to be entered much easier than using the standard keyboard.</li>
<li>AutoSave feature ensures that your work will always be saved while on the go.</li>
<li>Easy to share your Excel workbook by emailing the spreadsheet as an attachment, as a link to the file, or as a PDF.</li>
</ul>
<p>The free version of this app provides a very useful experience for people who tend to frequently be away from their desktop. Additional features are available to be unlocked to qualifying Office 365 subscribers.</p>
<h2>How to Use Microsoft Excel for iPhone?</h2>
<p><strong>What formulas can be used in the app?</strong><br />
Formulas that you would type into any other Excel spreadsheet can be used in the iOS app.</p>
<p><img decoding="async" class="alignright size-full wp-image-776" src="https://excelzoom.com/wp-content/uploads/2015/02/excel-app-add-cloud.png" alt="Excel App Add Cloud Service" width="300" height="289" /><strong>How do I connect to OneDrive or Dropbox?</strong><br />
You can connect to services like Dropbox with just a click if you already have connected to the Dropbox app on your iOS device. If not, it&#8217;s a simple sign in to get connected. From the app&#8217;s &#8220;Account&#8221; screen, click the &#8220;Add a Service&#8221; button (note: you may need to log in to your Microsoft account in order to access this screen). From there choose OneDrive, OneDrive for Business, or Dropbox. Follow the remaining on-screen instructions to complete the connection.</p>
<p><img decoding="async" class="alignright size-full wp-image-777" src="https://excelzoom.com/wp-content/uploads/2015/02/excel-app-edit-formulas.png" alt="Excel App Edit Cells" width="300" height="513" /><strong>How do I edit a cell?</strong><br />
You can tap a cell to view the cell&#8217;s formula, but this won&#8217;t let you edit the cell yet. Double tap the cell you wish to edit, and you will enter the edit mode where the formula bar becomes editable. Click the red &#8220;X&#8221; icon under the formula bar if you want to cancel any edits, or click the green &#8220;✓&#8221; checkmark symbol to save your edits.</p>
<p><strong>How do I switch to the formula keyboard?</strong><br />
When you are editing a cell, the formula bar appears at the top of the screen. Tap the blue keyboard looking icon directly below the formula bar to enable the formula keyboard. Tap it again to return to the regular keyboard.</p>
<p><strong>How do I switch to another worksheet?</strong><br />
Just like the desktop version of Excel, the app has tabs along the bottom of the spreadsheet. Swipe along the tabs to find the worksheet you are looking for, and tap it to open it. Double tap the tab to edit the worksheet&#8217;s name.</p>
<p><strong>Can I search in the Excel App?</strong><br />
To search for a particular word, phrase, or number in your workbook, simply tap the three dots at the top right of the app&#8217;s screen (when not in the edit mode). Then tap the &#8220;Find&#8221; option. At the top of the screen will display a search box that you can use to search through your workbook. If you tap the &#8220;gear&#8221; icon to the left of the search box, you can modify the search function to do any of the following:</p>
<ul>
<li>Find</li>
<li>Find and Replace</li>
<li>Find and Replace All</li>
<li>Search in Workbook</li>
<li>Search in Sheet</li>
<li>Match Case</li>
<li>Match Cell</li>
</ul>
<p><strong><img decoding="async" class="alignright size-full wp-image-780" src="https://excelzoom.com/wp-content/uploads/2015/02/excel-app-formatting-option.png" alt="Excel App Formatting Options" width="300" height="577" />Can I edit a cell&#8217;s formatting?</strong><br />
With the cell whose formatting you want to edit selected, tap the icon in the top row that looks like the capital letter A with a pencil in front of it. A range of formatting options opens up towards the bottom of the screen, including common formatting functions such as:</p>
<ul>
<li>Font</li>
<li>Font size</li>
<li>Bold, Italic, Underline</li>
<li>Cell borders</li>
<li>Fill color</li>
<li>Font color</li>
<li>Top, middle or bottom align</li>
<li>Left, center or right align</li>
<li>Merge &amp; center (if multiple cells are selected)</li>
<li>Number formatting</li>
<li>Cell styles</li>
<li>Insert &amp; delete cells</li>
<li>Sort &amp; filter</li>
</ul>
<p><strong>How do I select more than one cell?</strong><br />
Using the drag handles, which look like dots on the top left and bottom right of the active cell, use your finger to drag the box around the cells you want to select. You can also tap on a row or column number or letter to select the entire row or column. You can also use the drag handles to select multiple rows or columns.</p>
<p>As of the time of this article&#8217;s writing, I have not found a way to select non-consecutive cells such as A1, B7, and D9 for example. Please feel free to leave a comment with more info if you find a way to do this.</p>
<p><strong>How can I copy/cut/paste a cell?</strong><br />
To cut and paste, simply select the cell(s) you want to cut, tap and hold the selection, and drag it to where you want to paste it.<br />
You can also tap the selection to bring up the standard iOS option menu, which provides options to Cut, Copy, Paste, Paste Format, Clear, Fill, or Wrap. After copying or cutting the selection, simply tap the cell where you want to paste the contents, and tap again to bring up the iOS option menu. Find Paste to paste the contents.</p>
<p><img decoding="async" src="https://excelzoom.com/wp-content/uploads/2015/02/excel-app-icons.png" alt="excel-app-icons" width="300" height="515" class="alignright size-full wp-image-783" /><strong>What if I need to undo a change?</strong><br />
Click the <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/21a9.png" alt="↩" class="wp-smiley" style="height: 1em; max-height: 1em;" /> icon at the top of the screen in the green bar (third icon from the left).</p>
<p><strong>How do I turn AutoSave on or off?</strong><br />
Tap the second icon in the top green bar, which looks like a piece of paper with circular arrows on it. Here you can select whether or not the file is autosaved, Change the name of the file, duplicate the file, restore from another version, print (if connected to an AirPrint printer), see the file properties, and get support.</p>
<p><strong>How do I share the Excel file?</strong><br />
Tap the three dots in the top green bar as you did in the search instructions above. Here you can choose to email the file as a link, email it as an attachment, or copy the link to the file.<br />
Note: copying a link or emailing a link to the file will only work if the file is already saved to either Dropbox or OneDrive.</p>
<p><strong>How do I save my file?</strong><br />
If saving a newly created file for the first time, tap the second icon in the top green bar, which will allow you to change the name of the file (by default the file name will be something generic like &#8220;Workbook&#8221;). Tap the Name option. This will open a screen where you can give the file a unique name, and also select which folder in your OneDrive, Dropbox, or iOS device where you want to save the file to.</p>
<p>If you have the AutoSave option turned on, you do not have to save the file after every change you make, as changes are saved in real time. However, you can follow the steps above to save the file to another folder if necessary.</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/microsoft-excel-iphone/">Microsoft Excel for iPhone</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://excelzoom.com/microsoft-excel-iphone/feed/</wfw:commentRss>
			<slash:comments>0</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>
	</channel>
</rss>
