<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Excelbuddy.com &#187; Formulas</title>
	<atom:link href="http://www.excelbuddy.com/category/formula/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.excelbuddy.com</link>
	<description>Your own little excel nerd!</description>
	<lastBuildDate>Sat, 14 Jan 2012 05:00:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Array Formulas in Excel</title>
		<link>http://www.excelbuddy.com/array-formulas-in-excel/</link>
		<comments>http://www.excelbuddy.com/array-formulas-in-excel/#comments</comments>
		<pubDate>Tue, 12 Oct 2010 02:30:02 +0000</pubDate>
		<dc:creator>Excelbud</dc:creator>
				<category><![CDATA[Formulas]]></category>
		<category><![CDATA[arrays]]></category>

		<guid isPermaLink="false">http://www.excelbuddy.com/?p=811</guid>
		<description><![CDATA[Arrays in Microsoft Excel are not a single function, but actually a variety of different formulas that you can use to simplify your work with arrays.]]></description>
			<content:encoded><![CDATA[<p>Arrays in Microsoft Excel are not a single function, but actually a variety of different formulas that you can use to simplify your work with arrays.  There are two main things to remember when working with arrays in Excel:</p>
<ol>
<li>Array formulas perform computations on a series of values.</li>
<li>When you are done entering an array formula, you have to press CTRL, SHIFT, and ENTER all at the same time instead of just ENTER.</li>
</ol>
<p>The output of an array formula can be either a single value, or another array, depending on the formula that you use.  When you enter an array formula by pressing CTRL, SHIFT, and ENTER, it will show up with braces { } around it.</p>
<p><em>Array Formulas that Return Arrays as their Output</em></p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-812" title="A1" src="http://www.excelbuddy.com/wp-content/uploads/2010/10/A1.jpg" alt="" width="313" height="169" /></p>
<p>Sometimes when you have a long series of values that you want to work with, it can be helpful to use an array formula to perform operations on every element of the array at once instead of filling in the formula in one cell and then having to fill in all of the other cells.  In the example above, the array of interested is ARRAY 1 in cells A3:A7.  If you’re interested in returning the row that corresponds to each element of this array, you can highlight cells C3:C7 and type =ROW(A3:A7), then press CNTRL, SHIFT, and ENTER together.  The output is shown above as OUTPUT 1.  This type of formula can be useful if you need to get a series of references based on where the components of the array are located.</p>
<p>Another way to use array formulas is to perform functions on multiple values at the same time.  In the case of OUTPUT 2 above, cells D3:D7 were selected, =(A3:A7) was entered, followed by pressing CTRL, SHIFT, and ENTER.  This returns all of the values from the original array.  Similarly, you could instead enter =(A3:A7)*2 and press CTRL, SHIFT, and ENTER together.  This would return the output shown as OUTPUT 3 above.</p>
<p><em>Array Formulas that Return a Single Value as Their Output</em></p>
<p>Array formulas can also be useful for performing operations on arrays where certain criteria are met.  The example below shows how an equation entered in cell D6 returns the sum of all of the elements in Array 1 which are greater than 5.  The function itself is =SUM(IF(A3:A11&gt;5,A3:A11,FALSE)).  This takes each element in the array in cells A3:A11 and creates a new array by checking to see if it is greater than 5.  In cases where the value is greater than 5, it returns the value, otherwise it returns FALSE.  So the intermediate step would show = SUM(FALSE, 16, FALSE, FALSE, 9, FALSE, 26, 6, 10).  The SUM function ignores the FALSE values, so the result is 16+9+26+6+10 = 67.</p>
<p><strong> </strong></p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-813" title="A2" src="http://www.excelbuddy.com/wp-content/uploads/2010/10/A2.jpg" alt="" width="378" height="224" /></p>
<p>You can also include multiple criteria if you want to.  The next example looks at a list of transactions that shows the region and product as well as the number of units sold.  If you wanted to know how many total oranges were sold in the North region, you could use the array formula =SUM((A2:A10=&#8221;North&#8221;)*(B2:B10=&#8221;Oranges&#8221;)*C2:C10) followed by pressing CTRL, SHIFT, and ENTER together.  This formula looks at 3 arrays separately, evaluating the first 2 arrays based on the criteria entered, and the third array just for its values.</p>
<p>The criteria are effectively evaluated as IF statements, returning true where the criteria is met and FALSE where it is not.  So, the equation would evaluate as =SUM({TRUE, FALSE, TRUE, FALSE, FALSE, FALSE, FALSE, TRUE, TRUE}*{TRUE, TRUE, FALSE, FALSE, TRUE, FALSE, TRUE, TRUE, FALSE}*{4, 6, 8, 9, 3, 14, 11, 8, 16}).  TRUE values evaluate as 1’s, while FALSE values evaluate as 0’s, so the next step would look like =SUM(4,0,0,0,0,0,0,8,0).  This produces the result of 12, which is the total number of oranges sold in the North region.  The array formula allows you take several steps of computation and combine them into a single formula.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-814" title="A3" src="http://www.excelbuddy.com/wp-content/uploads/2010/10/A3.jpg" alt="" width="463" height="233" /></p>
<p>In addition to the SUM function, you can also use a variety of other equations like MAX, MIN, and AVERAGE in array functions depending on your needs.  If you understand what result you’re looking for and can set up the array function correctly, you can save yourself a lot of work by letting Excel handle the complexity of the calculations.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.excelbuddy.com/array-formulas-in-excel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Relative and Absolute cell referencing</title>
		<link>http://www.excelbuddy.com/relative-and-absolute-cell-referencing/</link>
		<comments>http://www.excelbuddy.com/relative-and-absolute-cell-referencing/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 05:00:13 +0000</pubDate>
		<dc:creator>Excelbud</dc:creator>
				<category><![CDATA[Formulas]]></category>
		<category><![CDATA[absolute]]></category>
		<category><![CDATA[referencing]]></category>
		<category><![CDATA[relative]]></category>

		<guid isPermaLink="false">http://excelbuddy.com/?p=472</guid>
		<description><![CDATA[Learn the difference between relative and absolute cell referencing in Excel.]]></description>
			<content:encoded><![CDATA[<p>The following tutorial will go over the difference between relative and absolute cell referencing in Excel.</p>
<p><strong>Have you ever copied a formula to a different cell and it no longer worked?</strong> In most cases, this is primarily due to the cell referencing in the formula.</p>
<h1>Relative Cell Referencing</h1>
<p>This is the most common type of referencing.  Relative cell referencing is used to perform simple tasks such as <a href="http://www.excelbuddy.com/auto-fill/"title="Auto Fill" >Auto Fill</a>.   This type of referencing changes/adjusts when copied in the spreadsheet.</p>
<p><strong>Example:</strong> =SUM(B2:B5)</p>
<h1>Absolute Cell Referencing</h1>
<p>This type of referencing essentially locks part of the formula to a specific row and column.  This is achieved by using &#8220;$&#8221;</p>
<p>That&#8217;s right, a dollar sign.  $$$</p>
<p><strong>Example:</strong> =SUM($B2:$B5)</p>
<p>In this example we are telling the formula to take Cell A3 and multiply $245.54 by 2.3% in Cell E2.  By using dollar signs around Cell E2, we can hold this cell constant.  Using the Auto Fill feature, copy the same formula down the spreadsheet.</p>
<p><a href="http://www.excelbuddy.com/wp-content/uploads/2010/02/Absolute_positioning.gif"><img class="size-full wp-image-599 alignnone" title="Absolute_positioning" src="http://www.excelbuddy.com/wp-content/uploads/2010/02/Absolute_positioning.gif" alt="Absolute Positioning in Excel" width="439" height="173" /></a></p>
<h1>Summary of Cell Referencing</h1>
<p>$A1 &#8211; Allows row reference to change, not the column</p>
<p>A$1 &#8211; Allows column reference to change, not the row</p>
<p>$A$1 &#8211; Allows neither the column nor the row reference to change.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.excelbuddy.com/relative-and-absolute-cell-referencing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Convert Decimals to Time</title>
		<link>http://www.excelbuddy.com/convert-decimals-to-time/</link>
		<comments>http://www.excelbuddy.com/convert-decimals-to-time/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 05:20:02 +0000</pubDate>
		<dc:creator>Excelbud</dc:creator>
				<category><![CDATA[Formulas]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[decimal]]></category>
		<category><![CDATA[decimals]]></category>
		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://excelbuddy.com/?p=571</guid>
		<description><![CDATA[Easily convert decimals to time in Excel.]]></description>
			<content:encoded><![CDATA[<h1>Let&#8217;s Begin</h1>
<p>Ever need to quicky convert decimals to time in Excel?  Well, now you can!</p>
<p>A user of this site sent us an email asking how to convert decimals on a timesheet to actual time.  The easiest way is to use the formula below.</p>
<p><strong>=A1/(24*60)</strong></p>
<p><a href="http://excelbuddy.com/wp-content/uploads/2010/01/11.gif" rel="nofollow" ><img class="aligncenter size-full wp-image-574" title="1" src="http://excelbuddy.com/wp-content/uploads/2010/01/11.gif" alt="" width="357" height="158" /></a></p>
<p>Cell B2 will now display a decimal. </p>
<p>We now need to format Cell B2 to display time.  To make this happen, right click the cell and click &#8220;Format Cells&#8221;</p>
<p>Once open, go down to the &#8220;Custom&#8221; category.  In the &#8220;Type&#8221; field, enter  &#8220;<strong>hh:mm:ss</strong>&#8221; and click OK!</p>
<p><a href="http://excelbuddy.com/wp-content/uploads/2010/01/2.gif" rel="nofollow" ><img class="aligncenter size-full wp-image-575" title="2" src="http://excelbuddy.com/wp-content/uploads/2010/01/2.gif" alt="" width="500" height="437" /></a></p>
<h1>Were done!</h1>
<p>That&#8217;s pretty simple Excel tip, but it does come in handy.  If anyone is having any difficulty, simply use the comment box below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.excelbuddy.com/convert-decimals-to-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiply in Excel</title>
		<link>http://www.excelbuddy.com/multiply-in-excel/</link>
		<comments>http://www.excelbuddy.com/multiply-in-excel/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 01:26:29 +0000</pubDate>
		<dc:creator>Excelbud</dc:creator>
				<category><![CDATA[Formulas]]></category>
		<category><![CDATA[*]]></category>
		<category><![CDATA[multiplication]]></category>
		<category><![CDATA[multiply]]></category>

		<guid isPermaLink="false">http://excelbuddy.com/?p=337</guid>
		<description><![CDATA[Multiplication is essential in Excel.  Luckily it is extremely easy.

To multiply numbers or cells in Excel, we must use a basic formula.  All Formula’s in Excel begin with “=”
]]></description>
			<content:encoded><![CDATA[<p>Multiplication is essential in Excel.  Luckily it is extremely easy.</p>
<p>To multiply numbers or cells in Excel, we must use a basic formula.  All Formula’s in Excel begin with “=”</p>
<p>The asterisk “*” is used as the multiplication symbol between cells. In most cases, multiplication will occur between two individual cells.  However, you still can use the * in certain formulas.</p>
<p>Example Formula: <strong> =A2*B2</strong></p>
<p>Hit the &#8220;Enter&#8221; key or &#8220;Check Mark&#8221; to confirm the formula.</p>
<p><a href="http://excelbuddy.com/wp-content/uploads/2010/01/1.gif" rel="nofollow" ><img class="aligncenter size-full wp-image-559" title="1" src="http://excelbuddy.com/wp-content/uploads/2010/01/1.gif" alt="" width="348" height="207" /></a><strong> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.excelbuddy.com/multiply-in-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upper to Lower Case Function &#8220;=PROPER()&#8221;</title>
		<link>http://www.excelbuddy.com/upper-to-lower-case-function-proper/</link>
		<comments>http://www.excelbuddy.com/upper-to-lower-case-function-proper/#comments</comments>
		<pubDate>Tue, 19 May 2009 22:54:49 +0000</pubDate>
		<dc:creator>Excelbud</dc:creator>
				<category><![CDATA[Formulas]]></category>
		<category><![CDATA[lower]]></category>
		<category><![CDATA[proper]]></category>
		<category><![CDATA[transform]]></category>
		<category><![CDATA[upper]]></category>

		<guid isPermaLink="false">http://excelbuddy.com/?p=133</guid>
		<description><![CDATA[The following formula easily tranforms a list of data from Upper to Lower case. ]]></description>
			<content:encoded><![CDATA[<p>The following formula easily transforms a list of data from Upper to Lower case.</p>
<ol>
<li>Start with a list of data.<br />
<img class="aligncenter size-full wp-image-134" title="image1" src="http://excelbuddy.com/wp-content/uploads/2009/05/image1.jpg" alt="image1" width="284" height="400" /></li>
<li>Next, place your curser in Cell C1 and enter the following functions as shown. =PROPER()<br />
<img class="aligncenter size-full wp-image-135" title="image2" src="http://excelbuddy.com/wp-content/uploads/2009/05/image2.jpg" alt="image2" width="351" height="430" /></li>
<li>Enter the cell A1 between the parenthesis. =PROPER(A1)<br />
<img class="aligncenter size-full wp-image-136" title="image3" src="http://excelbuddy.com/wp-content/uploads/2009/05/image3.jpg" alt="image3" width="350" height="432" /></li>
<li>Now drag the formula down to convert the remaining names to lower case. Simple huh!<br />
<img class="aligncenter size-full wp-image-137" title="image4" src="http://excelbuddy.com/wp-content/uploads/2009/05/image4.jpg" alt="image4" width="348" height="446" /></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.excelbuddy.com/upper-to-lower-case-function-proper/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Current Date &amp; Time</title>
		<link>http://www.excelbuddy.com/current-date-time/</link>
		<comments>http://www.excelbuddy.com/current-date-time/#comments</comments>
		<pubDate>Wed, 13 May 2009 03:02:29 +0000</pubDate>
		<dc:creator>Excelbud</dc:creator>
				<category><![CDATA[Formulas]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[now]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[today]]></category>

		<guid isPermaLink="false">http://excelbuddy.com/?p=97</guid>
		<description><![CDATA[The following two forumulas are extremely useful.  As simple as they may seem, they can play a vital role in many Excel documents.]]></description>
			<content:encoded><![CDATA[<p>The following two forumulas are extremely useful.  As simple as they may seem, they can play a vital role in many Excel documents.</p>
<p>Current date and time</p>
<p>=NOW()</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-98" title="now" src="http://excelbuddy.com/wp-content/uploads/2009/05/now.gif" alt="now" width="157" height="75" /></p>
<p>Current Date</p>
<p>=TODAY()</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-99" title="today" src="http://excelbuddy.com/wp-content/uploads/2009/05/today.gif" alt="today" width="135" height="78" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.excelbuddy.com/current-date-time/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

