<?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>Atlas</title>
	<atom:link href="http://www.atlaspm.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.atlaspm.com</link>
	<description>Excel Training &#124; Testing &#124; Consulting</description>
	<lastBuildDate>Thu, 23 Feb 2012 00:56:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Tom&#8217;s Tutorials For Excel: Copying Multiple ListBox Selections to Worksheet</title>
		<link>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-copying-multiple-listbox-selections-to-worksheet/</link>
		<comments>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-copying-multiple-listbox-selections-to-worksheet/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 10:58:21 +0000</pubDate>
		<dc:creator>Tom Urtis</dc:creator>
				<category><![CDATA[Tom's Tutorials for Excel]]></category>
		<category><![CDATA[@TomUrtis/Atlas on Twitter]]></category>
		<category><![CDATA[atlas]]></category>
		<category><![CDATA[Atlas Program Management]]></category>
		<category><![CDATA[Atlas programing management]]></category>
		<category><![CDATA[Atlas Programming on Facebook]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[excel how to]]></category>
		<category><![CDATA[frequently asked questions about Excel]]></category>
		<category><![CDATA[innovative use of Excel]]></category>
		<category><![CDATA[Microsoft Excel]]></category>
		<category><![CDATA[Microsoft MVP]]></category>
		<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[Tom Urtis]]></category>
		<category><![CDATA[Tom Urtis/ Atlas on facebook]]></category>

		<guid isPermaLink="false">http://www.atlaspm.com/?p=4180</guid>
		<description><![CDATA[Tom&#8217;s Tutorials For Excel: Copying Multiple ListBox Selections to Worksheet Here&#8217;s how to transfer multiple selected items from an ActiveX ListBox onto your spreadsheet without intervening empty cells. Private Sub cmdConfirm_Click() 'Turn off ScreenUpdating. Application.ScreenUpdating = False 'Declare variables for &#8230; <a href="http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-copying-multiple-listbox-selections-to-worksheet/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Tom&#8217;s Tutorials For Excel: Copying Multiple ListBox Selections to Worksheet</strong></p>
<p>Here&#8217;s how to transfer multiple selected items from an ActiveX ListBox onto your spreadsheet without intervening empty cells.<br />
<br />
<a href="http://www.atlaspm.com/wp-content/uploads/2012/02/ListBox_Transfer.jpg"><img src="http://www.atlaspm.com/wp-content/uploads/2012/02/ListBox_Transfer.jpg" alt="" title="ListBox_Transfer" width="644" height="733" class="aligncenter size-full wp-image-4181" /></a><br />
<br />
<font color="black"><code>Private Sub cmdConfirm_Click()</code></font color="black"><br />
<font color="green"><code>'Turn off ScreenUpdating.</code></font color="green"><br />
<font color="black"><code>Application.ScreenUpdating = False</code></font color="black"></p>
<p><font color="green"><code>'Declare variables for row and ListBox item index.</code></font color="green"><br />
<font color="black"><code>Dim xRow As Integer, intItem As Integer</code></font color="black"></p>
<p><font color="green"><code>'The list will be transferred to column A.</code></font color="green"><br />
<font color="green"><code>'Clear column A to start with a clean slate.</code></font color="green"><br />
<font color="black"><code>Columns(1).Clear</code></font color="black"></p>
<p><font color="green"><code>'In cell A1, enter the column header and bold the cell.</code></font color="green"><br />
<font color="black"><code>With Range("A1")</code></font color="black"><br />
<font color="black"><code>.Value = "Shopping List Selections"</code></font color="black"><br />
<font color="black"><code>.Font.Bold = True</code></font color="black"><br />
<font color="black"><code>End With</code></font color="black"></p>
<p><font color="green"><code>'Because cell A1 is a header cell, have row 2 be the first</code></font color="green"><br />
<font color="green"><code>'row where ListBox items with start being transferred.</code></font color="green"><br />
<font color="black"><code>xRow = 2</code></font color="black"></p>
<p><font color="green"><code>'Open a With structure for the lbxShoppingList ListBox.</code></font color="green"><br />
<font color="black"><code>With lbxShoppingList</code></font color="black"><br />
<font color="green"><code>'Loop through each ListBox item to see if it is selected.</code></font color="green"><br />
<font color="green"><code>'If it is selected, transfer it to the next available row,</code></font color="green"><br />
<font color="green"><code>'and add a 1 to the xRow (next available row) variable.</code></font color="green"><br />
<font color="black"><code>For intItem = 0 To .ListCount - 1</code></font color="black"><br />
<font color="black"><code>If .Selected(intItem) = True Then</code></font color="black"></code></font color="black"><br />
<font color="black"><code>Cells(xRow, 1).Value = .List(intItem)</code></font color="black"><br />
<font color="black"><code>xRow = xRow + 1</code></font color="black"><br />
<font color="black"><code>End If</code></font color="black"><br />
<font color="black"><code>Next intItem</code></font color="black"><br />
<font color="green"><code>'Close the With structure.</code></font color="green"><br />
<font color="black"><code>End With</code></font color="black"></p>
<p><font color="green"><code>'Autofit column A for readability and neatness!</code></font color="green"><br />
<font color="black"><code>Columns(1).AutoFit</code></font color="black"></p>
<p><font color="green"><code>'Turn ScreenUpdating back on.</code></font color="green"><br />
<font color="black"><code>Application.ScreenUpdating = True</code></font color="black"><br />
<font color="black"><code>End Sub</code></font color="black"></p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-copying-multiple-listbox-selections-to-worksheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tom&#8217;s Tutorials For Excel: Summing to Today&#8217;s Date With INDIRECT</title>
		<link>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-summing-to-todays-date-with-indirect/</link>
		<comments>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-summing-to-todays-date-with-indirect/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 11:10:13 +0000</pubDate>
		<dc:creator>Tom Urtis</dc:creator>
				<category><![CDATA[Tom's Tutorials for Excel]]></category>
		<category><![CDATA[@TomUrtis/Atlas on Twitter]]></category>
		<category><![CDATA[atlas]]></category>
		<category><![CDATA[Atlas Program Management]]></category>
		<category><![CDATA[Atlas programing management]]></category>
		<category><![CDATA[Atlas Programming on Facebook]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[excel how to]]></category>
		<category><![CDATA[frequently asked questions about Excel]]></category>
		<category><![CDATA[innovative use of Excel]]></category>
		<category><![CDATA[Microsoft Excel]]></category>
		<category><![CDATA[Microsoft MVP]]></category>
		<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[Tom Urtis]]></category>
		<category><![CDATA[Tom Urtis/ Atlas on facebook]]></category>

		<guid isPermaLink="false">http://www.atlaspm.com/?p=4176</guid>
		<description><![CDATA[Tom&#8217;s Tutorials For Excel: Summing to Today&#8217;s Date With INDIRECT Here&#8217;s an example of using the INDIRECT and SUM functions to add numbers from the top of column B to the row where today&#8217;s date (or whatever date you specify) &#8230; <a href="http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-summing-to-todays-date-with-indirect/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Tom&#8217;s Tutorials For Excel: Summing to Today&#8217;s Date With INDIRECT</strong></p>
<p>Here&#8217;s an example of using the <code>INDIRECT</code> and <code>SUM</code> functions to add numbers from the top of column B to the row where today&#8217;s date (or whatever date you specify) is found in column A.</p>
<p>The formula in cell E2 is<br />
<code>=SUM(INDIRECT("B1:B"&#038;MATCH(E1,A:A,0)))</code></p>
<p>If you want to bypass the helper cell for today&#8217;s date, the formula would be<br />
<code>=SUM(INDIRECT("B1:B"&#038;MATCH(TODAY(),A:A,0)))</code>.<br />
<br />
<a href="http://www.atlaspm.com/wp-content/uploads/2012/02/SUM_INDIRECT_TODAY.jpg"><img src="http://www.atlaspm.com/wp-content/uploads/2012/02/SUM_INDIRECT_TODAY.jpg" alt="" title="SUM_INDIRECT_TODAY" width="633" height="713" class="aligncenter size-full wp-image-4177" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-summing-to-todays-date-with-indirect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tom&#8217;s Tutorials For Excel: SUMIF For Days Past Last Date</title>
		<link>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-sumif-for-days-past-last-date/</link>
		<comments>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-sumif-for-days-past-last-date/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 09:38:05 +0000</pubDate>
		<dc:creator>Tom Urtis</dc:creator>
				<category><![CDATA[Tom's Tutorials for Excel]]></category>
		<category><![CDATA[@TomUrtis/Atlas on Twitter]]></category>
		<category><![CDATA[atlas]]></category>
		<category><![CDATA[Atlas Program Management]]></category>
		<category><![CDATA[Atlas programing management]]></category>
		<category><![CDATA[Atlas Programming on Facebook]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[excel how to]]></category>
		<category><![CDATA[frequently asked questions about Excel]]></category>
		<category><![CDATA[innovative use of Excel]]></category>
		<category><![CDATA[Microsoft Excel]]></category>
		<category><![CDATA[Microsoft MVP]]></category>
		<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[Tom Urtis]]></category>
		<category><![CDATA[Tom Urtis/ Atlas on facebook]]></category>

		<guid isPermaLink="false">http://www.atlaspm.com/?p=4126</guid>
		<description><![CDATA[Tom&#8217;s Tutorials For Excel: SUMIF For Days Past Last Date Here&#8217;s an example of two formulas working in tandem for a common goal. In cell E1 is the formula =LOOKUP(9.99999999999999E+307,A:A) which returns the last number (in this case a date) &#8230; <a href="http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-sumif-for-days-past-last-date/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Tom&#8217;s Tutorials For Excel: SUMIF For Days Past Last Date</strong></p>
<p>Here&#8217;s an example of two formulas working in tandem for a common goal.</p>
<p>In cell E1 is the formula<br />
<code>=LOOKUP(9.99999999999999E+307,A:A)</code><br />
which returns the last number (in this case a date) in column A.</p>
<p>In cell E3 is the formula<br />
<code>=SUMIF(A5:A30,">="&#038;(E1-E2),B5:B30)</code><br />
that sums numbers in column B for dates up to 90 days past the last date.</p>
<p>Note that the number 90 is the criteria in cell E2.<br />
<br />
<a href="http://www.atlaspm.com/wp-content/uploads/2012/02/SUMIF_LastDate_DaysPast1.jpg"><img src="http://www.atlaspm.com/wp-content/uploads/2012/02/SUMIF_LastDate_DaysPast1.jpg" alt="" title="SUMIF_LastDate_DaysPast" width="646" height="577" class="aligncenter size-full wp-image-4128" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-sumif-for-days-past-last-date/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tom&#8217;s Tutorials For Excel: Horizontal SUMPRODUCT</title>
		<link>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-horizontal-sumproduct/</link>
		<comments>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-horizontal-sumproduct/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 10:27:59 +0000</pubDate>
		<dc:creator>Tom Urtis</dc:creator>
				<category><![CDATA[Tom's Tutorials for Excel]]></category>
		<category><![CDATA[@TomUrtis/Atlas on Twitter]]></category>
		<category><![CDATA[atlas]]></category>
		<category><![CDATA[Atlas Program Management]]></category>
		<category><![CDATA[Atlas programing management]]></category>
		<category><![CDATA[Atlas Programming on Facebook]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[excel how to]]></category>
		<category><![CDATA[frequently asked questions about Excel]]></category>
		<category><![CDATA[innovative use of Excel]]></category>
		<category><![CDATA[Microsoft Excel]]></category>
		<category><![CDATA[Microsoft MVP]]></category>
		<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[Tom Urtis]]></category>
		<category><![CDATA[Tom Urtis/ Atlas on facebook]]></category>

		<guid isPermaLink="false">http://www.atlaspm.com/?p=4117</guid>
		<description><![CDATA[Tom&#8217;s Tutorials For Excel: Horizontal SUMPRODUCT Just a quick example of the SUMPRODUCT function being utilized for data arranged horizontally across a row, instead of the more usually-seen columnar arrangement. The formula in cell B12 is =SUMPRODUCT((A7:L7=B10)*(A8:L8>=B11)) The formula in &#8230; <a href="http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-horizontal-sumproduct/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Tom&#8217;s Tutorials For Excel: Horizontal SUMPRODUCT</strong></p>
<p>Just a quick example of the <code>SUMPRODUCT</code> function being utilized for data arranged horizontally across a row, instead of the more usually-seen columnar arrangement.</p>
<p>The formula in cell B12 is <code>=SUMPRODUCT((A7:L7=B10)*(A8:L8>=B11))</code><br />
The formula in cell B23 is <code>=SUMPRODUCT((A18:L18=B21)*(A19:L19=B22))</code><br />
<br />
<a href="http://www.atlaspm.com/wp-content/uploads/2012/02/Horizontal_SUMPRODUCT1.jpg"><img src="http://www.atlaspm.com/wp-content/uploads/2012/02/Horizontal_SUMPRODUCT1.jpg" alt="" title="Horizontal_SUMPRODUCT" width="641" height="450" class="aligncenter size-full wp-image-4121" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-horizontal-sumproduct/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tom&#8217;s Tutorials For Excel: Formatting Numbers and Text With Custom Colors</title>
		<link>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-formatting-numbers-and-text-with-custom-colors/</link>
		<comments>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-formatting-numbers-and-text-with-custom-colors/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 12:10:30 +0000</pubDate>
		<dc:creator>Tom Urtis</dc:creator>
				<category><![CDATA[Tom's Tutorials for Excel]]></category>
		<category><![CDATA[@TomUrtis/Atlas on Twitter]]></category>
		<category><![CDATA[atlas]]></category>
		<category><![CDATA[Atlas Program Management]]></category>
		<category><![CDATA[Atlas programing management]]></category>
		<category><![CDATA[Atlas Programming on Facebook]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[excel how to]]></category>
		<category><![CDATA[frequently asked questions about Excel]]></category>
		<category><![CDATA[innovative use of Excel]]></category>
		<category><![CDATA[Microsoft Excel]]></category>
		<category><![CDATA[Microsoft MVP]]></category>
		<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[Tom Urtis]]></category>
		<category><![CDATA[Tom Urtis/ Atlas on facebook]]></category>

		<guid isPermaLink="false">http://www.atlaspm.com/?p=4101</guid>
		<description><![CDATA[Tom&#8217;s Tutorials For Excel: Formatting Numbers and Text With Custom Colors Using the familiar Format Cells dialog box and your imagination, you can totally bypass Conditional Formatting to custom-color your numbers and text as you like. In the above picture, &#8230; <a href="http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-formatting-numbers-and-text-with-custom-colors/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Tom&#8217;s Tutorials For Excel: Formatting Numbers and Text With Custom Colors</strong></p>
<p>Using the familiar Format Cells dialog box and your imagination, you can totally bypass Conditional Formatting to custom-color your numbers and text as you like.<br />
<br />
<a href="http://www.atlaspm.com/wp-content/uploads/2012/02/CellsFormatted.jpg"><img src="http://www.atlaspm.com/wp-content/uploads/2012/02/CellsFormatted.jpg" alt="" title="CellsFormatted" width="415" height="208" class="aligncenter size-full wp-image-4102" /></a><br />
<br />
In the above picture, I have formatted positive numbers to be colored orange; negative numbers to be colored pink; a zero to be colored gray; and text to be colored brown.</p>
<p>As you may know, when you custom format a cell&#8217;s Number property, there are four possible entry types, separated by semicolons, in this syntax:<br />
<code>PostiveNumber;NegativeNumber;Zero;Text<code></p>
<p>This is why you usually see three semicolons (separating the four Number components) in custom formatting scenarios. In the next picture, the Format Cells dialog box was called by first selecting the cell(s) you want to format, and then pressing <code>Alt+O+E</code></p>
<p>Next, click the Number tab, select Custom in the Category pane, and in the Type field enter your desired custom format. The one I entered is<br />
<code>[Color45][>0]#,##0;[Color7][<0]-#,##0;[Color48]0;[Color53]@</code></p>
<p>Notice I used color index numbers (45, 38, 15, and 53)instead of color names. The reason is, I wanted to demonstrate how to implement custom formats with more flexibility for selectable colors than Excel's 8 basic colors of blue, black, white, cyan, red, green, magenta, and yellow. Had I used those basic colors for example, the colors would be specified by name not index number, and the custom format would have looked different:<br />
<code>[Green][ > 0]#,##0;[Magenta][ < 0]-#,##0;[Yellow]0;[Blue]@</code><br />
<br />
<a href="http://www.atlaspm.com/wp-content/uploads/2012/02/FormatCells_ColorNumbersText.jpg"><img src="http://www.atlaspm.com/wp-content/uploads/2012/02/FormatCells_ColorNumbersText.jpg" alt="" title="FormatCells_ColorNumbersText" width="399" height="394" class="aligncenter size-full wp-image-4103" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-formatting-numbers-and-text-with-custom-colors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tom&#8217;s Tutorials For Excel: Calculating Negative Time</title>
		<link>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-calculating-negative-time/</link>
		<comments>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-calculating-negative-time/#comments</comments>
		<pubDate>Mon, 13 Feb 2012 10:48:28 +0000</pubDate>
		<dc:creator>Tom Urtis</dc:creator>
				<category><![CDATA[Tom's Tutorials for Excel]]></category>
		<category><![CDATA[@TomUrtis/Atlas on Twitter]]></category>
		<category><![CDATA[atlas]]></category>
		<category><![CDATA[Atlas Program Management]]></category>
		<category><![CDATA[Atlas programing management]]></category>
		<category><![CDATA[Atlas Programming on Facebook]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[excel how to]]></category>
		<category><![CDATA[frequently asked questions about Excel]]></category>
		<category><![CDATA[innovative use of Excel]]></category>
		<category><![CDATA[Microsoft Excel]]></category>
		<category><![CDATA[Microsoft MVP]]></category>
		<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[Tom Urtis]]></category>
		<category><![CDATA[Tom Urtis/ Atlas on facebook]]></category>

		<guid isPermaLink="false">http://www.atlaspm.com/?p=4096</guid>
		<description><![CDATA[Tom&#8217;s Tutorials For Excel: Calculating Negative Time Here&#8217;s an example for calculating the difference between times, and expressing a negative result when a larger time is subtracted from a smaller time. In the picture, runners are listed for comparing their &#8230; <a href="http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-calculating-negative-time/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Tom&#8217;s Tutorials For Excel: Calculating Negative Time</strong></p>
<p>Here&#8217;s an example for calculating the difference between times, and expressing a negative result when a larger time is subtracted from a smaller time.<br />
<br />
<a href="http://www.atlaspm.com/wp-content/uploads/2012/02/NegativeTime.jpg"><img src="http://www.atlaspm.com/wp-content/uploads/2012/02/NegativeTime.jpg" alt="" title="NegativeTime" width="638" height="435" class="aligncenter size-full wp-image-4097" /></a><br />
<br />
In the picture, runners are listed for comparing their 1000 meter run times against the record time. Two runners eclipsed the record, shown in column C with a negative sign in front of their calculated Over/Under time difference.</p>
<p>The formula in cell C7 and copied down to cell C19 is<br />
<code>=IF($A$4>B7,"-"&#038;TEXT(ABS(B7-$A$4),"[hh]:mm:ss"),B7-$A$4)</code></p>
<p>The custom format in cell A4 and the cells in range B7:C19 is<br />
<code>[hh]:mm:ss</code></p>
<p>To call attention to the record-breakers, the data range was selected from cell A7:C19 and conditionally formatted with the custom rule<br />
<code>=$A$4>$B7</code> (note the relative and absolute references).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-calculating-negative-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tom&#8217;s Tutorials For Excel: Ranking With Conditional Omission</title>
		<link>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-ranking-with-conditional-omission/</link>
		<comments>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-ranking-with-conditional-omission/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 17:18:22 +0000</pubDate>
		<dc:creator>Tom Urtis</dc:creator>
				<category><![CDATA[Tom's Tutorials for Excel]]></category>
		<category><![CDATA[@TomUrtis/Atlas on Twitter]]></category>
		<category><![CDATA[atlas]]></category>
		<category><![CDATA[Atlas Program Management]]></category>
		<category><![CDATA[Atlas programing management]]></category>
		<category><![CDATA[Atlas Programming on Facebook]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[excel how to]]></category>
		<category><![CDATA[frequently asked questions about Excel]]></category>
		<category><![CDATA[innovative use of Excel]]></category>
		<category><![CDATA[Microsoft Excel]]></category>
		<category><![CDATA[Microsoft MVP]]></category>
		<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[Tom Urtis]]></category>
		<category><![CDATA[Tom Urtis/ Atlas on facebook]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www.atlaspm.com/?p=4071</guid>
		<description><![CDATA[Tom&#8217;s Tutorials For Excel: Ranking With Conditional Omission Here&#8217;s an example of ranking a list while omitting an item for consideration. In blue cell E2 is the name of an employee to eliminate from consideration in the ranking process. The &#8230; <a href="http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-ranking-with-conditional-omission/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Tom&#8217;s Tutorials For Excel: Ranking With Conditional Omission</strong></p>
<p>Here&#8217;s an example of ranking a list while omitting an item for consideration. In blue cell E2 is the name of an employee to eliminate from consideration in the ranking process.</p>
<p>The formula in cell C5 and copied down to cell C20 is<br />
<code>=IF(A5<>$E$2,SUMPRODUCT(($A$5:$A$20<>"")+0,(B5<$B$5:$B$20)+0)+1,"")</code><br />
<br />
<a href="http://www.atlaspm.com/wp-content/uploads/2012/02/ConditionalRank.jpg"><img src="http://www.atlaspm.com/wp-content/uploads/2012/02/ConditionalRank.jpg" alt="" title="ConditionalRank" width="639" height="450" class="aligncenter size-full wp-image-4072" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-ranking-with-conditional-omission/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tom&#8217;s Tutorials For Excel: Emptying the Recycle Bin</title>
		<link>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-emptying-the-recycle-bin/</link>
		<comments>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-emptying-the-recycle-bin/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 12:28:42 +0000</pubDate>
		<dc:creator>Tom Urtis</dc:creator>
				<category><![CDATA[Tom's Tutorials for Excel]]></category>
		<category><![CDATA[@TomUrtis/Atlas on Twitter]]></category>
		<category><![CDATA[atlas]]></category>
		<category><![CDATA[Atlas Program Management]]></category>
		<category><![CDATA[Atlas programing management]]></category>
		<category><![CDATA[Atlas Programming on Facebook]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[excel how to]]></category>
		<category><![CDATA[frequently asked questions about Excel]]></category>
		<category><![CDATA[innovative use of Excel]]></category>
		<category><![CDATA[Microsoft Excel]]></category>
		<category><![CDATA[Microsoft MVP]]></category>
		<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[Tom Urtis]]></category>
		<category><![CDATA[Tom Urtis/ Atlas on facebook]]></category>

		<guid isPermaLink="false">http://www.atlaspm.com/?p=4064</guid>
		<description><![CDATA[Tom&#8217;s Tutorials For Excel: Emptying the Recycle Bin This macro with API empties the Recycle Bin. In a new fresh standard module: Declare Function EmptyRecycleBin _ Lib "shell32.dll" Alias "SHEmptyRecycleBinA" _ (ByVal hwnd As Long, _ ByVal pszRootPath As String, &#8230; <a href="http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-emptying-the-recycle-bin/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Tom&#8217;s Tutorials For Excel: Emptying the Recycle Bin</strong><br />
<br />
This macro with API empties the Recycle Bin.<br />
<br />
<a href="http://www.atlaspm.com/wp-content/uploads/2012/02/EmptyRecycleBin.jpg"><img src="http://www.atlaspm.com/wp-content/uploads/2012/02/EmptyRecycleBin.jpg" alt="" title="EmptyRecycleBin" width="617" height="278" class="aligncenter size-full wp-image-4065" /></a><br />
<br />
In a new fresh standard module:</p>
<pre>
Declare Function EmptyRecycleBin _
Lib "shell32.dll" Alias "SHEmptyRecycleBinA" _
(ByVal hwnd As Long, _
ByVal pszRootPath As String, _
ByVal dwFlags As Long) As Long

Sub RecycleBinEmpty()
Dim rbEmpty As Long
rbEmpty = EmptyRecycleBin(0&#038;, vbNullString, 1&#038;)
End Sub</pre>
<p>Thanks to <a href="https://twitter.com/#!/OnErrorGoto0"><font color="blue"><u>OnErrorGoto0</u></font color="blue"></a> for assistance on this one.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-emptying-the-recycle-bin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tom&#8217;s Tutorials For Excel: Creating a Right Click Event For ActiveX Controls</title>
		<link>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-creating-a-right-click-event-for-activex-controls/</link>
		<comments>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-creating-a-right-click-event-for-activex-controls/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 11:11:16 +0000</pubDate>
		<dc:creator>Tom Urtis</dc:creator>
				<category><![CDATA[Tom's Tutorials for Excel]]></category>
		<category><![CDATA[@TomUrtis/Atlas on Twitter]]></category>
		<category><![CDATA[atlas]]></category>
		<category><![CDATA[Atlas Program Management]]></category>
		<category><![CDATA[Atlas programing management]]></category>
		<category><![CDATA[Atlas Programming on Facebook]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[excel how to]]></category>
		<category><![CDATA[frequently asked questions about Excel]]></category>
		<category><![CDATA[innovative use of Excel]]></category>
		<category><![CDATA[Microsoft Excel]]></category>
		<category><![CDATA[Microsoft MVP]]></category>
		<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[Tom Urtis]]></category>
		<category><![CDATA[Tom Urtis/ Atlas on facebook]]></category>

		<guid isPermaLink="false">http://www.atlaspm.com/?p=4060</guid>
		<description><![CDATA[Tom&#8217;s Tutorials For Excel: Creating a Right Click Event For ActiveX Controls Free and safe downloadable workbook example. There is no built-in menu for the right-click event of ActiveX objects. Here is a utility for that, using a CommandButton as &#8230; <a href="http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-creating-a-right-click-event-for-activex-controls/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Tom&#8217;s Tutorials For Excel: Creating a Right Click Event For ActiveX Controls</strong><br />
<br />
<a href='http://www.atlaspm.com/wp-content/uploads/2012/02/Urtis_ActiveX_RightClickMenu.zip'><font color="blue"><u>Free and safe downloadable workbook example.</u></font color="blue"></a><br />
<br />
There is no built-in menu for the right-click event of ActiveX objects. Here is a utility for that, using a CommandButton as an example.<br />
<br />
<a href="http://www.atlaspm.com/wp-content/uploads/2012/02/RightClickEvent_ActiveX_Control.jpg"><img src="http://www.atlaspm.com/wp-content/uploads/2012/02/RightClickEvent_ActiveX_Control.jpg" alt="" title="RightClickEvent_ActiveX_Control" width="638" height="480" class="aligncenter size-full wp-image-4053" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-creating-a-right-click-event-for-activex-controls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tom&#8217;s Tutorials For Excel: Fuzzy Matching With Partial Strings For Sum or Average</title>
		<link>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-fuzzy-matching-with-partial-strings-for-sum-or-average/</link>
		<comments>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-fuzzy-matching-with-partial-strings-for-sum-or-average/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 08:38:43 +0000</pubDate>
		<dc:creator>Tom Urtis</dc:creator>
				<category><![CDATA[Tom's Tutorials for Excel]]></category>
		<category><![CDATA[@TomUrtis/Atlas on Twitter]]></category>
		<category><![CDATA[atlas]]></category>
		<category><![CDATA[Atlas Program Management]]></category>
		<category><![CDATA[Atlas programing management]]></category>
		<category><![CDATA[Atlas Programming on Facebook]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[excel how to]]></category>
		<category><![CDATA[frequently asked questions about Excel]]></category>
		<category><![CDATA[innovative use of Excel]]></category>
		<category><![CDATA[Microsoft Excel]]></category>
		<category><![CDATA[Microsoft MVP]]></category>
		<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[Tom Urtis]]></category>
		<category><![CDATA[Tom Urtis/ Atlas on facebook]]></category>

		<guid isPermaLink="false">http://www.atlaspm.com/?p=4044</guid>
		<description><![CDATA[Tom&#8217;s Tutorials For Excel: Fuzzy Matching With Partial Strings For Sum or Average When you have a mish-mash of alphanumeric strings in a list, here&#8217;s how you can sum or average their corresponding numbers based on a partial string criterion. &#8230; <a href="http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-fuzzy-matching-with-partial-strings-for-sum-or-average/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Tom&#8217;s Tutorials For Excel: Fuzzy Matching With Partial Strings For Sum or Average</strong></p>
<p>When you have a mish-mash of alphanumeric strings in a list, here&#8217;s how you can sum or average their corresponding numbers based on a partial string criterion.<br />
<br />
<a href="http://www.atlaspm.com/wp-content/uploads/2012/02/FuzzyMatch_SUM_AVERAGE.jpg"><img src="http://www.atlaspm.com/wp-content/uploads/2012/02/FuzzyMatch_SUM_AVERAGE.jpg" alt="" title="FuzzyMatch_SUM_AVERAGE" width="643" height="457" class="aligncenter size-full wp-image-4045" /></a><br />
<br />
The picture shows two examples with the criterion in cell B4.</p>
<p>The example on the left evaluates each item in column B for the presence of &#8220;354&#8243; and sums for column C. The cells that match are B13, B16, and B19, so their corresponding numbers in cells C13, C16, and C19 sum to 168 in blue-colored cell C4, with array formula<br />
<code>=SUM(IF(ISNUMBER(FIND(B4,B7:B19,1)),C7:C19))</code>.</p>
<p>The example on the right evaluates each item in column B for the presence of case insensitive &#8220;ATLAS&#8221; and averages for column C. The cells that match are B7, B8, B14, B15, and B19, with numbers in C7, C8, C14, C15, C19 averaged in pink-colored cell C4, by array formula<br />
<code>=AVERAGE(IF(ISNUMBER(FIND(B4,B7:B19,1)),C7:C19))</code>.</p>
<p>Recall, array formulas are applied to a cell by simultaneously pressing the Ctrl+Shift+Enter keys, not just Enter. The curly braces are not typed in by you; Excel places them automatically when the array formula is properly installed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlaspm.com/toms-tutorials-for-excel/toms-tutorials-for-excel-fuzzy-matching-with-partial-strings-for-sum-or-average/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

