<?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>Sum Archives - Excel Zoom</title>
	<atom:link href="https://excelzoom.com/tag/sum/feed/" rel="self" type="application/rss+xml" />
	<link>https://excelzoom.com/tag/sum/</link>
	<description>...because it&#039;s more than just a calculator</description>
	<lastBuildDate>Mon, 26 Oct 2015 18:19:02 +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>Sum Archives - Excel Zoom</title>
	<link>https://excelzoom.com/tag/sum/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<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 fetchpriority="high" 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>Sum Values In A Month</title>
		<link>https://excelzoom.com/sum-values-month/</link>
					<comments>https://excelzoom.com/sum-values-month/#comments</comments>
		
		<dc:creator><![CDATA[Mark]]></dc:creator>
		<pubDate>Tue, 14 Oct 2014 22:23:51 +0000</pubDate>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Date]]></category>
		<category><![CDATA[Month]]></category>
		<category><![CDATA[Sum]]></category>
		<guid isPermaLink="false">http://excelzoom.com/?p=651</guid>

					<description><![CDATA[<p>Sometimes we get data in Excel that makes it somewhat difficult to look at the big picture. For example, you might get a list of transactions with a date and sale price. Let&#8217;s say you need to sum values in a month to use in some other analysis. With that example, it isn&#8217;t easy to [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/sum-values-month/">Sum Values In A Month</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Sometimes we get data in Excel that makes it somewhat difficult to look at the big picture. For example, you might get a list of transactions with a date and sale price. Let&#8217;s say you need to sum values in a month to use in some other analysis.</p>
<p>With that example, it isn&#8217;t easy to just look at the data and know that the first 10 rows are January&#8217;s transactions, the next 12 are February&#8217;s, etc. Analyzing the data could be even harder if all the transactions are out of order. However it isn&#8217;t terribly difficult to get a sum of values in a month.</p>
<h2>Sum Values In A Month</h2>

<p>Let&#8217;s look at a simple example with two transactions per month for January, February, and March.</p>
<p>We are given the date of the transaction and the transaction amount but also want to find out the monthly totals. Now keep in mind that this is a simple example, but imagine if there were instead hundreds of transactions that need to be added up, the task could be much more difficult.</p>

<p>We will be using two formulas to get our answer: SUMPRODUCT and MONTH.</p>
<p>MONTH will produce a number between 1 (January) &#8211; 12 (December) given a particular date. For example, =MONTH(1/15/2014) will give a result of 1, because this date is in January.</p>
<p>SUMPRODUCT returns the sum of the products of a given range.</p>
<p>When we combine the two, we can use them to sum values in a month.</p>
<p>First set up your spreadsheet like in the screenshot above. Enter dates in A2:A7, dollar amounts in B2:B7, the numbers 1, 2, and 3 (for months January through March) in cells D2, D3, and D4 respectively. Finally, enter the following formula in cell E2:</p>
<p><code>=SUMPRODUCT((MONTH($A$2:$A$7)=D2)*($B$2:$B$7))</code></p>
<p>Then copy the formula down to E3 and E4.</p>
<p>Your spreadsheet should now have monthly totals for January, February, and March.</p>
<p>Obviously, in your actual worksheet you will replace the cell references with the applicable cells that you are working with. If you have a set of data that may encompass a variable number of rows (i.e. past row 7 in our example), you can replace $A$2:$A$7 and $B$2:$B$7 with A:A and B:B, which will use the entire column. However, please note that any errant text like a header row will cause an error in the formula.</p>
<p>You can also sum values in a year by replacing MONTH in the formula with YEAR, and replacing the numbers 1-3 in cells D2:D4 with years such as 2014, 2015, 2016, etc.</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/sum-values-month/">Sum Values In A Month</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://excelzoom.com/sum-values-month/feed/</wfw:commentRss>
			<slash:comments>9</slash:comments>
		
		
			</item>
		<item>
		<title>3D Sum Formula Reference</title>
		<link>https://excelzoom.com/3d-sum-formula-reference/</link>
					<comments>https://excelzoom.com/3d-sum-formula-reference/#comments</comments>
		
		<dc:creator><![CDATA[Mark]]></dc:creator>
		<pubDate>Thu, 12 Jun 2014 18:44:25 +0000</pubDate>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Cell]]></category>
		<category><![CDATA[Formula]]></category>
		<category><![CDATA[Shortcuts]]></category>
		<category><![CDATA[Sum]]></category>
		<guid isPermaLink="false">http://excelzoom.com/?p=526</guid>

					<description><![CDATA[<p>On occasion, it is useful to keep track of similar data in separate worksheets. Data such as monthly, quarterly, or annual financial information isn&#8217;t always best to show in one spreadsheet. However, there may be times when you want to see a total of the data on each worksheet. The 3D Sum Formula will let [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/3d-sum-formula-reference/">3D Sum Formula Reference</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>On occasion, it is useful to keep track of similar data in separate worksheets. Data such as monthly, quarterly, or annual financial information isn&#8217;t always best to show in one spreadsheet. However, there may be times when you want to see a total of the data on each worksheet. The 3D Sum Formula will let you easily add up data across the worksheets without having a long complicated formula.</p>
<p>Let&#8217;s say you run a restaurant, and you want to see what menu items sell the best on any given day of the week. Looking at just one week&#8217;s worth of data doesn&#8217;t give you a good picture since you could have had a large party come in on a usually slow day, and throw off your statistics.</p>

<p>Instead, create a spreadsheet with a separate tab for each week you want to track, plus a total tab.</p>
<p>Next, click the <em>Week 1</em> tab, hold down the <em>Shift</em> key and click the <em>Total</em> tab then release the <em>Shift</em> key. This selects all the tabs in your workbook, and allows you to type information into one sheet and have it show up in all the worksheets in your file.</p>
<p><img decoding="async" class="aligncenter size-full wp-image-527" src="https://excelzoom.com/wp-content/uploads/2014/06/weektabs.png" alt="3D Sum Range" width="440" height="27" /></p>
<p>On the <em>Week 1</em> tab, click in cell A1 and enter Menu Item, then enter Monday through Sunday in cells B1 through H1. In cells A2 through A7, enter some menu items. I&#8217;m using Fish, Steak, Pork, Pasta, Alcohol, and Total. You can enter whatever you want here and go down as far as you need to.</p>
<p>If you want to apply any formatting to all the cells or add total formulas, go ahead and do that now while all the worksheets are still selected.</p>
<h2>Using Excel 3D Sum Formula</h2>
<p>Now that all the consistent formatting has been done, click on any of the other worksheets in your workbook in order to deselect all the others.</p>
<p>Enter in some sales data for each of the weeks.</p>
<p>Now that all the weeks are populated, you can start using the 3D sum formula in order to get the <em>Total</em> tab populated.</p>
<p>To do this, click on the <em>Total</em> tab, and select cell B2. Enter the following equation:</p>
<pre>=SUM(Week1:Week6!B2)</pre>
<p>This formula now adds up everything in cell B2 between Week 1 and Week 6. You can copy and paste that formula into the remaining cells to get the totals for all the other menu items and days.</p>
<p><img decoding="async" class="aligncenter wp-image-528 size-full" src="https://excelzoom.com/wp-content/uploads/2014/06/3drange.png" alt="3D Sum Formula" width="700" height="198" srcset="https://excelzoom.com/wp-content/uploads/2014/06/3drange.png 700w, https://excelzoom.com/wp-content/uploads/2014/06/3drange-600x170.png 600w" sizes="(max-width: 700px) 100vw, 700px" /></p>
<h3>More Than Just 3D Sum Formula?</h3>
<p>Let&#8217;s say you wanted to something else with the data in this workbook. Maybe you didn&#8217;t want to add the data to get a total, but maybe you wanted to get an average, or find the minimum (or maximum) amount for each menu item on a given day.</p>
<p>You can use any of the following functions in a 3D formula:</p>
<ul>
<li>SUM</li>
<li>AVERAGE</li>
<li>AVERAGEA</li>
<li>COUNT</li>
<li>COUNTA</li>
<li>MAX</li>
<li>MAXA</li>
<li>MIN</li>
<li>MINA</li>
<li>PRODUCT</li>
<li>STDEV</li>
<li>STDEVA</li>
<li>STDEVP</li>
<li>STDEVPA</li>
<li>VAR</li>
<li>VARA</li>
<li>VARP</li>
<li>VARPA</li>
</ul>
<p>To use any of these functions in a 3D formula, click the cell you want to enter it in, and type</p>
<pre>=[Name of Function](</pre>
<p>Click the tab of the first worksheet in your reference (in the previous example, <em>Week 1</em>).</p>
<p>Hold down the <em>Shift</em> key, and click the last worksheet in the reference (in the previous example, <em>Week 6</em>).</p>
<p>Click the cell or range of cells to be referenced. Complete the formula with any additional arguments that are required, and then press <em>Enter</em>.</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/3d-sum-formula-reference/">3D Sum Formula Reference</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://excelzoom.com/3d-sum-formula-reference/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
	</channel>
</rss>
