<?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>PTS Blog &#187; Utilities</title>
	<atom:link href="http://peltiertech.com/WordPress/category/utilities/feed/" rel="self" type="application/rss+xml" />
	<link>http://peltiertech.com/WordPress</link>
	<description>PTS Excel Charts and Tutorials Blog</description>
	<lastBuildDate>Fri, 20 Nov 2009 15:03:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Label Last Point &#8211; Updated Add-In</title>
		<link>http://peltiertech.com/WordPress/label-last-point-updated-add-in/</link>
		<comments>http://peltiertech.com/WordPress/label-last-point-updated-add-in/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 05:00:12 +0000</pubDate>
		<dc:creator>Jon Peltier</dc:creator>
				<category><![CDATA[Utilities]]></category>

		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=2606</guid>
		<description><![CDATA[On my web site I wrote a tutorial that showed how to  Label the Last Point in an Excel Chart&#8217;s Series, and I posted a small add-in with the labeling procedure. I later blogged about this technique in Label Each Series in a Chart. When Excel 2007 came around, I discovered that the code [...]]]></description>
			<content:encoded><![CDATA[<p>On my web site I wrote a tutorial that showed how to  <a href="http://peltiertech.com/Excel/Charts/LabelLastPoint.html" rel="nofollow" title="Label the Last Point in an Excel Chart's Series" >Label the Last Point in an Excel Chart&#8217;s Series</a>, and I posted a small add-in with the labeling procedure. I later blogged about this technique in <a href="http://peltiertech.com/WordPress/label-each-series-in-a-chart/"title="Label Each Series in a Chart | PTS Blog" >Label Each Series in a Chart</a>. When <a href="http://peltiertech.com/WordPress/category/excel-2007/"title="Excel 2007 Articles on the PTS Blog" >Excel 2007</a> came around, I discovered that the code no longer worked as expected because Excel 2007 treats unplottable points (blank cells or #N/A errors) differently than Excel 2003 had. I figured out a workaround and blogged about it in <a href="http://peltiertech.com/WordPress/label-last-point-for-excel-2007/"title="Label Last Point for Excel 2007 | PTS Blog" >Label Last Point for Excel 2007</a>. I never posted the corresponding add-in for Excel 2007.</p>
<p>The problem with the code in these pages is that they only labeled the active chart. The problem with this is that I often have a dozen or more charts to label, and it&#8217;s tedious to select and run the code, select and run the code, select and run the code, etc. So I recently made a minor adjustment to the code that would apply last point labels to the active chart, or to all selected charts. (You can select multiple charts by holding Shift or Ctrl while clicking on them.)</p>
<p><span id="more-2606"></span>It&#8217;s almost embarrassing how long it took me to enhance the code. The reason I didn&#8217;t is another &#8220;feature&#8221; of Excel 2007. In previous versions of Excel, when I wanted to carry out an action on the selected charts on a worksheet, I could check out the selected shapes, determine which shapes were chart objects, and act on each chart object.</p>
<pre class="vbasmall">      Dim myChart As ChartObject
      Dim myShape As Shape

      ''' SELECTED SHAPES ON THE SHEET
      For Each myShape In Selection.ShapeRange
        ''' IS SHAPE A CHART?
        On Error Resume Next
        Set myChart = ActiveSheet.ChartObjects(myShape.Name)
        If Not Err Then
          ' check for surface chart (disallowed)
          If myChart.Chart.ChartType &lt; 83 Or myChart.Chart.ChartType &gt; 86 Then
            ''''''''''
            '' do what needs to be done
            ''''''''''
          End If
        End If
        On Error GoTo 0
      Next
 </pre>
<p>For some reason, Excel 2007 was unable to detect which chart objects were selected, so it would process every chart object on the sheet. Not cool if you have painstakingly added a dummy series and applied custom data labels to the chart you had not selected.</p>
<p>I learned that you could add a shape to the sheet, and add this shape to the selection, and Excel 2007 would recognize which chart objects were actually selected. But this is a bit more contrived than I like. Not as elegant as my usual code (ha ha).</p>
<p>Leave it to my friend and colleague <a href="http://andypope.info/" rel="nofollow" title="Andy Pope's Excel Information" >Andy Pope</a> to find a workaround. Andy is great at looking at things a bit sideways and seeing what the rest of us have overlooked. Visit <a href="http://andypope.info/" rel="nofollow" title="Andy Pope's Excel Information" >Andy&#8217;s site</a> for a bunch of imaginative charting examples.</p>
<p>Anyway, Andy realized that the selection would consist of a set of objects, and you can test whether each object in the selection is a chart object. This approach works just fine in 2007 (and in 2003!).</p>
<pre class="vbasmall">      Dim obj As Object

      '' check for error (i.e., selection isn't a bunch of shapes)
      On Error Resume Next
      For Each obj In Selection
        If TypeName(obj) = "ChartObject" Then
          ' check for surface chart (disallowed)
          If obj.Chart.ChartType &lt; 83 Or obj.Chart.ChartType &gt; 86 Then
            ''''''''''
            '' do what needs to be done
            ''''''''''
          End If
        End If
      Next
      On Error GoTo 0
 </pre>
<p>So finally I expanded my routine. I&#8217;ve packed it into an add-in, which works just fine in Excel 2003 and 2007. Download the zip file <a href="http://peltiertech.com/images/2009-11/PTSLabelLastPoint.zip" rel="nofollow" >PTSLabelLastPoint.zip</a> and unpack the add-in (PTSLabelLastPoint.xla). Install it using the applicable protocol in <a href="http://peltiertech.com/WordPress/installing-an-excel-add-in/"title="Installing an Excel Add-In in Excel 2003" >Installing an Excel Add-In</a> in Excel 2003 or in <a href="http://peltiertech.com/WordPress/installing-an-add-in-in-excel-2007/"title="Installing an Add-In in Excel 2007" >Installing an Add-In in Excel 2007</a>.</p>
<p>Peltier Technical Services, Inc., Copyright © 2009.<br />&nbsp;<br /><span style="font: 80% Verdana,Tahoma,Arial,sans-serif;">Licensed under a <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/" rel="nofollow" rel="license" >Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License</a>.<br />&nbsp;<br />
<a href="http://peltiertech.com/Utility/" rel="nofollow"  title="PTS Chart Utilities: Waterfall, Cluster-Stack Column, Box and Whisker, Marimekko"><img src="http://peltiertech.com/Utility/pix/ptschtbanner1.png" alt="PTS Chart Utilities: Waterfall, Cluster-Stack Column, Box and Whisker, Marimekko" border="0" /></a></p>



Bookmark and share this entry:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Flabel-last-point-updated-add-in%2F&amp;title=Label%20Last%20Point%20-%20Updated%20Add-In&amp;bodytext=On%20my%20web%20site%20I%20wrote%20a%20tutorial%20that%20showed%20how%20to%20%20Label%20the%20Last%20Point%20in%20an%20Excel%20Chart%27s%20Series%2C%20and%20I%20posted%20a%20small%20add-in%20with%20the%20labeling%20procedure.%20I%20later%20blogged%20about%20this%20technique%20in%20Label%20Each%20Series%20in%20a%20Chart.%20When%20Excel%202007%20came" title="Digg"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Flabel-last-point-updated-add-in%2F&amp;title=Label%20Last%20Point%20-%20Updated%20Add-In&amp;notes=On%20my%20web%20site%20I%20wrote%20a%20tutorial%20that%20showed%20how%20to%20%20Label%20the%20Last%20Point%20in%20an%20Excel%20Chart%27s%20Series%2C%20and%20I%20posted%20a%20small%20add-in%20with%20the%20labeling%20procedure.%20I%20later%20blogged%20about%20this%20technique%20in%20Label%20Each%20Series%20in%20a%20Chart.%20When%20Excel%202007%20came" title="del.icio.us"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Flabel-last-point-updated-add-in%2F&amp;t=Label%20Last%20Point%20-%20Updated%20Add-In" title="Facebook"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Flabel-last-point-updated-add-in%2F" title="Technorati"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Label%20Last%20Point%20-%20Updated%20Add-In%20-%20http%3A%2F%2Fpeltiertech.com%2FWordPress%2Flabel-last-point-updated-add-in%2F" title="Twitter"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Flabel-last-point-updated-add-in%2F&amp;title=Label%20Last%20Point%20-%20Updated%20Add-In" title="StumbleUpon"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Flabel-last-point-updated-add-in%2F&amp;title=Label%20Last%20Point%20-%20Updated%20Add-In&amp;annotation=On%20my%20web%20site%20I%20wrote%20a%20tutorial%20that%20showed%20how%20to%20%20Label%20the%20Last%20Point%20in%20an%20Excel%20Chart%27s%20Series%2C%20and%20I%20posted%20a%20small%20add-in%20with%20the%20labeling%20procedure.%20I%20later%20blogged%20about%20this%20technique%20in%20Label%20Each%20Series%20in%20a%20Chart.%20When%20Excel%202007%20came" title="Google Bookmarks"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Flabel-last-point-updated-add-in%2F&amp;title=Label%20Last%20Point%20-%20Updated%20Add-In" title="Reddit"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Flabel-last-point-updated-add-in%2F&amp;t=Label%20Last%20Point%20-%20Updated%20Add-In" title="MySpace"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://slashdot.org/bookmark.pl?title=Label%20Last%20Point%20-%20Updated%20Add-In&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Flabel-last-point-updated-add-in%2F" title="Slashdot"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Flabel-last-point-updated-add-in%2F&amp;title=Label%20Last%20Point%20-%20Updated%20Add-In&amp;source=PTS+Blog+PTS+Excel+Charts+and+Tutorials+Blog&amp;summary=On%20my%20web%20site%20I%20wrote%20a%20tutorial%20that%20showed%20how%20to%20%20Label%20the%20Last%20Point%20in%20an%20Excel%20Chart%27s%20Series%2C%20and%20I%20posted%20a%20small%20add-in%20with%20the%20labeling%20procedure.%20I%20later%20blogged%20about%20this%20technique%20in%20Label%20Each%20Series%20in%20a%20Chart.%20When%20Excel%202007%20came" title="LinkedIn"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Flabel-last-point-updated-add-in%2F&amp;submitHeadline=Label%20Last%20Point%20-%20Updated%20Add-In&amp;submitSummary=On%20my%20web%20site%20I%20wrote%20a%20tutorial%20that%20showed%20how%20to%20%20Label%20the%20Last%20Point%20in%20an%20Excel%20Chart%27s%20Series%2C%20and%20I%20posted%20a%20small%20add-in%20with%20the%20labeling%20procedure.%20I%20later%20blogged%20about%20this%20technique%20in%20Label%20Each%20Series%20in%20a%20Chart.%20When%20Excel%202007%20came&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://peltiertech.com/WordPress/label-last-point-updated-add-in/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Cascade Chart Utility Joins the Team</title>
		<link>http://peltiertech.com/WordPress/cascade-chart-utility-joins-the-team/</link>
		<comments>http://peltiertech.com/WordPress/cascade-chart-utility-joins-the-team/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 05:00:07 +0000</pubDate>
		<dc:creator>Jon Peltier</dc:creator>
				<category><![CDATA[Utilities]]></category>

		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=2404</guid>
		<description><![CDATA[The family of PTS Excel Charting Utilities has welcomed a new member: The PTS Cascade Chart Utility. Many customers of other utilities have asked about this type of chart, and I have answered with a new program. A cascade chart shows one value vertically (e.g., revenue) against a cumulative value horizontally (e.g., market segment size).

Usually [...]]]></description>
			<content:encoded><![CDATA[<p>The family of <a href="http://peltiertech.com/Utility/" rel="nofollow" title="PTS Excel Charting Utilities" >PTS Excel Charting Utilities</a> has welcomed a new member: <a href="http://peltiertech.com/Utility/CascadeUtility.html" rel="nofollow" title="PTS Cascade Chart Utility" >The PTS Cascade Chart Utility</a>. Many customers of other utilities have asked about this type of chart, and I have answered with a new program. A cascade chart shows one value vertically (e.g., revenue) against a cumulative value horizontally (e.g., market segment size).</p>
<p align="center"><img src="http://peltiertech.com/images/2009-09/cascade01.png" alt="Cascade Chart by Peltier Technical Services" /></p>
<p><span id="more-2404"></span>Usually the data is sorted in decreasing order of the vertical value. The chart can be filled in (above) or shown in outline only (below).</p>
<p align="center"><img src="http://peltiertech.com/images/2009-09/cascade02.png" alt="Cascade Chart by Peltier Technical Services" /></p>
<p>Multiple series can be stacked with unique fill colors&#8230;</p>
<p align="center"><img src="http://peltiertech.com/images/2009-09/cascade03.png" alt="Cascade Chart by Peltier Technical Services" /></p>
<p>&#8230; or stacked unfilled with unique line colors.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-09/cascade04.png" alt="Cascade Chart by Peltier Technical Services" /></p>
<p>The data can even include positive and negative values.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-09/cascade05.png" alt="Cascade Chart by Peltier Technical Services" /></p>
<p>The utility was delayed several weeks because of an unexpected incompatibility in Excel 2007. But the new workaround has been tested, and it&#8217;s ready to go.</p>
<p>For information, visit the <a href="http://peltiertech.com/Utility/CascadeUtility.html" rel="nofollow" title="PTS Cascade Chart Utility" >PTS Cascade Chart Utility</a> page. Details about installation and use of the utility can be found at the <a href="http://peltiertech.com/Utility/CascadeUtilityDocs.html" rel="nofollow" title="PTS Cascade Chart Utility Documentation" >Cascade Chart documentation</a> page.</p>
<p>The utility is priced at $29 US until Thanksgiving (Thursday, November 26, 2009). After that it will be priced at $39 US.</p>



Bookmark and share this entry:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fcascade-chart-utility-joins-the-team%2F&amp;title=Cascade%20Chart%20Utility%20Joins%20the%20Team&amp;bodytext=The%20family%20of%20PTS%20Excel%20Charting%20Utilities%20has%20welcomed%20a%20new%20member%3A%20The%20PTS%20Cascade%20Chart%20Utility.%20Many%20customers%20of%20other%20utilities%20have%20asked%20about%20this%20type%20of%20chart%2C%20and%20I%20have%20answered%20with%20a%20new%20program.%20A%20cascade%20chart%20shows%20one%20value%20vertic" title="Digg"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fcascade-chart-utility-joins-the-team%2F&amp;title=Cascade%20Chart%20Utility%20Joins%20the%20Team&amp;notes=The%20family%20of%20PTS%20Excel%20Charting%20Utilities%20has%20welcomed%20a%20new%20member%3A%20The%20PTS%20Cascade%20Chart%20Utility.%20Many%20customers%20of%20other%20utilities%20have%20asked%20about%20this%20type%20of%20chart%2C%20and%20I%20have%20answered%20with%20a%20new%20program.%20A%20cascade%20chart%20shows%20one%20value%20vertic" title="del.icio.us"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fcascade-chart-utility-joins-the-team%2F&amp;t=Cascade%20Chart%20Utility%20Joins%20the%20Team" title="Facebook"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fcascade-chart-utility-joins-the-team%2F" title="Technorati"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Cascade%20Chart%20Utility%20Joins%20the%20Team%20-%20http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fcascade-chart-utility-joins-the-team%2F" title="Twitter"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fcascade-chart-utility-joins-the-team%2F&amp;title=Cascade%20Chart%20Utility%20Joins%20the%20Team" title="StumbleUpon"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fcascade-chart-utility-joins-the-team%2F&amp;title=Cascade%20Chart%20Utility%20Joins%20the%20Team&amp;annotation=The%20family%20of%20PTS%20Excel%20Charting%20Utilities%20has%20welcomed%20a%20new%20member%3A%20The%20PTS%20Cascade%20Chart%20Utility.%20Many%20customers%20of%20other%20utilities%20have%20asked%20about%20this%20type%20of%20chart%2C%20and%20I%20have%20answered%20with%20a%20new%20program.%20A%20cascade%20chart%20shows%20one%20value%20vertic" title="Google Bookmarks"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fcascade-chart-utility-joins-the-team%2F&amp;title=Cascade%20Chart%20Utility%20Joins%20the%20Team" title="Reddit"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fcascade-chart-utility-joins-the-team%2F&amp;t=Cascade%20Chart%20Utility%20Joins%20the%20Team" title="MySpace"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://slashdot.org/bookmark.pl?title=Cascade%20Chart%20Utility%20Joins%20the%20Team&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fcascade-chart-utility-joins-the-team%2F" title="Slashdot"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fcascade-chart-utility-joins-the-team%2F&amp;title=Cascade%20Chart%20Utility%20Joins%20the%20Team&amp;source=PTS+Blog+PTS+Excel+Charts+and+Tutorials+Blog&amp;summary=The%20family%20of%20PTS%20Excel%20Charting%20Utilities%20has%20welcomed%20a%20new%20member%3A%20The%20PTS%20Cascade%20Chart%20Utility.%20Many%20customers%20of%20other%20utilities%20have%20asked%20about%20this%20type%20of%20chart%2C%20and%20I%20have%20answered%20with%20a%20new%20program.%20A%20cascade%20chart%20shows%20one%20value%20vertic" title="LinkedIn"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fcascade-chart-utility-joins-the-team%2F&amp;submitHeadline=Cascade%20Chart%20Utility%20Joins%20the%20Team&amp;submitSummary=The%20family%20of%20PTS%20Excel%20Charting%20Utilities%20has%20welcomed%20a%20new%20member%3A%20The%20PTS%20Cascade%20Chart%20Utility.%20Many%20customers%20of%20other%20utilities%20have%20asked%20about%20this%20type%20of%20chart%2C%20and%20I%20have%20answered%20with%20a%20new%20program.%20A%20cascade%20chart%20shows%20one%20value%20vertic&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://peltiertech.com/WordPress/cascade-chart-utility-joins-the-team/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>LOESS Utility &#8211; Awesome Update</title>
		<link>http://peltiertech.com/WordPress/loess-utility-awesome-update/</link>
		<comments>http://peltiertech.com/WordPress/loess-utility-awesome-update/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 05:00:04 +0000</pubDate>
		<dc:creator>Jon Peltier</dc:creator>
				<category><![CDATA[Utilities]]></category>
		<category><![CDATA[LOESS]]></category>
		<category><![CDATA[Statistics]]></category>

		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=2481</guid>
		<description><![CDATA[I talked about LOESS smoothing in LOESS Smoothing in Excel, where I showed my improved VBA function for calculating smoothed data. I introduced an improved LOESS Smoothing utility in LOESS Utility for Excel. Since I use the utility frequently, I encountered many things about it that I wanted to change. Since I am the developer [...]]]></description>
			<content:encoded><![CDATA[<p>I talked about LOESS smoothing in <a href="http://peltiertech.com/WordPress/loess-smoothing-in-excel/"title="LOESS Smoothing in Excel" >LOESS Smoothing in Excel</a>, where I showed my improved VBA function for calculating smoothed data. I introduced an improved LOESS Smoothing utility in <a href="http://peltiertech.com/WordPress/loess-utility-for-excel/"title="LOESS Utility for Excel" >LOESS Utility for Excel</a>. Since I use the utility frequently, I encountered many things about it that I wanted to change. Since I am the developer of the utility, I have actually been able to make these changes. And after a few months of use and a few hour-long sessions aimed at making it do what I want it to do, I&#8217;ve developed this utility into something that is, in the local vernacular, &#8220;wicked awesome&#8221;. If you&#8217;ve never seen &#8220;Good Will Hunting&#8221;, that means &#8220;way cool&#8221;.</p>
<p>What makes this utility so great, you ask? The calculations were already perfectly adequate, and I didn&#8217;t change them at all. But I&#8217;ll show the new dialog, so you can see what has changed.</p>
<p align="center"><img src="/images/2009-10/loess_dialog_1.png" alt="New and Improved LOESS Utility Dialog" /></p>
<p><span id="more-2481"></span>First, the previous interface for selecting input and output ranges was frustratingly restrictive. So I made the range selection function much more flexible. The colorful buttons on the left indicate the built-in options. In the most elementary case, all four entries (X input, Y input, X output, and Y output) are separate ranges, which can even be located on separate worksheets.</p>
<p align="center"><img src="/images/2009-10/loess_dialog_2.png" alt="New and Improved LOESS Utility Dialog" /></p>
<p>The options make range selection easier if some columns happen to be adjacent to each other, or if the same X values are to be used for both input and output. The range selection (Ref Edit) boxes and related labels update according to which option has been selected.</p>
<p>When the X input range has been selected, the program determines Npts, the number of points that should be used for the selected value of alpha. When the user changes alpha or Npts, the other parameter updates.</p>
<p>In the following case, one column serves as X input and X output (A7:A135), the adjacent column holds the Y input data (B7:B135), and the program will dump the Y output into a separate column (D7:D135).</p>
<p align="center"><img src="/images/2009-10/loess_dialog_3.png" alt="New and Improved LOESS Utility Dialog" /></p>
<p>Even this wasn&#8217;t smooth enough for me, because I got tired of scrolling up and down to select long ranges. So I made another improvement. I made the program smart enough to know that if only one row had been selected, it should use the range of data below the selected row, stopping at the first empty cell.<br class="spacer_" /></p>
<p align="center"><img src="/images/2009-10/loess_dialog_4.png" alt="New and Improved LOESS Utility Dialog" /></p>
<p>Couldn&#8217;t be easier.</p>
<p>The last change I made was to have the utility store the last LOESS parameters in each worksheet. This way, if I run a particular analysis on each sheet in a workbook, I only have to activate that sheet, run the program, and the dialog is pre-populated with the settings I need. What a time-saver!</p>
<p><strong>PTS LOESS Utility Demo</strong></p>
<p>Here is a demo of the new utility. This analysis only took a few minutes. I started with some <a href="http://data.giss.nasa.gov/gistemp/graphs/Fig.A2.txt" rel="nofollow" title="Global Temperature Anomaly data from NASA" >Global Temperature Anomaly data from NASA</a>.</p>
<p align="center"><img src="/images/2009-10/loess_temp_data.png" alt="Measured and LOESS-Smoothed Temperature Anomaly Data" /></p>
<p>I ran the utility to generate a smoothed temperature anomaly curve.</p>
<p align="center"><img src="/images/2009-10/loess_temp_plot_1.png" alt="Measured and LOESS-Smoothed Temperature Anomaly Data" /></p>
<p>Then ran the utility a few more times to see the effect of alpha (number of points in the moving linear regression) on the shape of the smoothed curve. The values of 42, 25, and 12 points correspond to alpha values of 0.33, 0.2, and 0.1.</p>
<p align="center"><img src="/images/2009-10/loess_temp_plot_2.png" alt="Measured and LOESS-Smoothed Temperature Anomaly Data" /></p>
<p>The fewer points (i.e., smaller alpha) in an analysis, the more that the smoothed curve follows local variations in the data.</p>
<p><strong>Download and Install the Utility</strong></p>
<p>Click this <a href="/images/2009-10/PTS_LOESS.xla" rel="nofollow" title="PTS LOESS Smoothing Utility" >PTS LOESS Smoothing Utility</a> link to download the utility. The download is a simple Excel add-in. Save it to any convenient directory, then install it following the instructions in <a href="http://peltiertech.com/WordPress/installing-an-excel-add-in/">Installing an Excel Add-In</a> or <a href="http://peltiertech.com/WordPress/installing-an-add-in-in-excel-2007/">Installing an Add-In in Excel 2007</a>.</p>



Bookmark and share this entry:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-awesome-update%2F&amp;title=LOESS%20Utility%20-%20Awesome%20Update&amp;bodytext=I%20talked%20about%20LOESS%20smoothing%20in%20LOESS%20Smoothing%20in%20Excel%2C%20where%20I%20showed%20my%20improved%20VBA%20function%20for%20calculating%20smoothed%20data.%20I%20introduced%20an%20improved%20LOESS%20Smoothing%20utility%20in%20LOESS%20Utility%20for%20Excel.%20Since%20I%20use%20the%20utility%20frequently%2C%20I%20enco" title="Digg"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-awesome-update%2F&amp;title=LOESS%20Utility%20-%20Awesome%20Update&amp;notes=I%20talked%20about%20LOESS%20smoothing%20in%20LOESS%20Smoothing%20in%20Excel%2C%20where%20I%20showed%20my%20improved%20VBA%20function%20for%20calculating%20smoothed%20data.%20I%20introduced%20an%20improved%20LOESS%20Smoothing%20utility%20in%20LOESS%20Utility%20for%20Excel.%20Since%20I%20use%20the%20utility%20frequently%2C%20I%20enco" title="del.icio.us"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-awesome-update%2F&amp;t=LOESS%20Utility%20-%20Awesome%20Update" title="Facebook"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-awesome-update%2F" title="Technorati"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=LOESS%20Utility%20-%20Awesome%20Update%20-%20http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-awesome-update%2F" title="Twitter"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-awesome-update%2F&amp;title=LOESS%20Utility%20-%20Awesome%20Update" title="StumbleUpon"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-awesome-update%2F&amp;title=LOESS%20Utility%20-%20Awesome%20Update&amp;annotation=I%20talked%20about%20LOESS%20smoothing%20in%20LOESS%20Smoothing%20in%20Excel%2C%20where%20I%20showed%20my%20improved%20VBA%20function%20for%20calculating%20smoothed%20data.%20I%20introduced%20an%20improved%20LOESS%20Smoothing%20utility%20in%20LOESS%20Utility%20for%20Excel.%20Since%20I%20use%20the%20utility%20frequently%2C%20I%20enco" title="Google Bookmarks"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-awesome-update%2F&amp;title=LOESS%20Utility%20-%20Awesome%20Update" title="Reddit"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-awesome-update%2F&amp;t=LOESS%20Utility%20-%20Awesome%20Update" title="MySpace"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://slashdot.org/bookmark.pl?title=LOESS%20Utility%20-%20Awesome%20Update&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-awesome-update%2F" title="Slashdot"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-awesome-update%2F&amp;title=LOESS%20Utility%20-%20Awesome%20Update&amp;source=PTS+Blog+PTS+Excel+Charts+and+Tutorials+Blog&amp;summary=I%20talked%20about%20LOESS%20smoothing%20in%20LOESS%20Smoothing%20in%20Excel%2C%20where%20I%20showed%20my%20improved%20VBA%20function%20for%20calculating%20smoothed%20data.%20I%20introduced%20an%20improved%20LOESS%20Smoothing%20utility%20in%20LOESS%20Utility%20for%20Excel.%20Since%20I%20use%20the%20utility%20frequently%2C%20I%20enco" title="LinkedIn"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-awesome-update%2F&amp;submitHeadline=LOESS%20Utility%20-%20Awesome%20Update&amp;submitSummary=I%20talked%20about%20LOESS%20smoothing%20in%20LOESS%20Smoothing%20in%20Excel%2C%20where%20I%20showed%20my%20improved%20VBA%20function%20for%20calculating%20smoothed%20data.%20I%20introduced%20an%20improved%20LOESS%20Smoothing%20utility%20in%20LOESS%20Utility%20for%20Excel.%20Since%20I%20use%20the%20utility%20frequently%2C%20I%20enco&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://peltiertech.com/WordPress/loess-utility-awesome-update/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Deming Regression Utility</title>
		<link>http://peltiertech.com/WordPress/deming-regression-utility/</link>
		<comments>http://peltiertech.com/WordPress/deming-regression-utility/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 05:30:53 +0000</pubDate>
		<dc:creator>Jon Peltier</dc:creator>
				<category><![CDATA[Utilities]]></category>
		<category><![CDATA[Regression]]></category>
		<category><![CDATA[Statistics]]></category>

		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=2472</guid>
		<description><![CDATA[I described an alternative linear regression approach in Deming Regression. Whereas the standard linear regression techniques assume that all measurement error in the calculated model is in the dependent variable Y, the Deming Regression technique considers that both X and Y variable measurements may contain errors. Pairs of X-Y coordinates are used to estimate the [...]]]></description>
			<content:encoded><![CDATA[<p>I described an alternative linear regression approach in <a href="http://peltiertech.com/WordPress/deming-regression/"title="Deming Regression | PTS Blog" >Deming Regression</a>. Whereas the standard linear regression techniques assume that all measurement error in the calculated model is in the dependent variable Y, the Deming Regression technique considers that both X and Y variable measurements may contain errors. Pairs of X-Y coordinates are used to estimate the variances of the X and Y data.</p>
<p>Excel includes linear regression among its built-in functions, but there is no built-in Deming Regression capability. Users who wanted this feature had to purchase third party packages, or perform their calculations in specialized statistics programs outside of Excel.</p>
<p><strong>Deming Regression Utility</strong></p>
<p>I have created a new utility to address this functionality gap. It is a simple Excel add-in, with a simple user interface. The calculations are based on algorithms found in the references at the end of this article.</p>
<p><span id="more-2472"></span>When installed, the utility has a simple menu item on the PTS Charts menu</p>
<p align="center"><img src="/images/2009-10/DemingMenuItem.png" alt="PTS Deming Regression Menu" /></p>
<p>or button on the Add-Ins tab</p>
<p align="center"><img src="/images/2009-10/DemingRibbonItem.png" alt="PTS Deming Regression Menu" /></p>
<p>The PTS Deming Regression Utility provides two methods for calculating Deming Regression parameters. You can use custom worksheet formulas, or you can use a dialog-driven interface.</p>
<p><strong>Worksheet Formulas for Deming Regression</strong></p>
<p>This option does not require use of the menu or ribbon buttons. The user calculates Deming Regression parameters using simple worksheet formulas.</p>
<p>Referring to the regression results in the previous post</p>
<p align="center"><img src="/images/2009-10/DemingStats.png" alt="Deming Regression Results" /></p>
<p>The slope, intercept, and correlation calculations are each the result of a single worksheet formula:</p>
<p align="center"><img src="/images/2009-10/DemingSlope.png" alt="Excel Slope Calculation" /></p>
<p align="center"><img src="/images/2009-10/DemingIntercept.png" alt="Excel Intercept Calculation" /></p>
<p align="center"><img src="/images/2009-10/DemingCorrelation.png" alt="Excel Correlation Calculation" /></p>
<p>The Deming Regression results are returned in a three-element array formula with this syntax:</p>
<p><tt class="tt">=DEMING(Y-values, X-values, Horizontal)</tt></p>
<p>Y-values and X-values are required arguments which reference ranges. Each range must be one row or column only, with an even number of cells, and the two ranges must be the same size. The Horizontal argument is an optional True or False indicating the orientation of the output. The default is TRUE, and the results will be output in a row.</p>
<p>Don&#8217;t forget, the entire range containing the array formula is selected, the formula is typed, and it is entered by holding down CTRL+SHIFT and pressing ENTER.</p>
<p>Here is the row output form of the analysis:</p>
<p align="center"><img src="/images/2009-10/DemingFunctionResults.png" alt="Deming Array Formula Calculations" /></p>
<p>Here is the column output form of the analysis; note the FALSE argument in the third position:<br class="spacer_" /></p>
<p align="center"><img src="/images/2009-10/DemingFunctionResultsTranspose.png" alt="Deming Array Formula Calculations" /></p>
<p>The worksheet formulas are easy to use, but if you send the workbook to a colleague, they also need the utility installed to see the results. Without the utility, all calculations are replaced by #NAME? errors.</p>
<p><strong>Dialog-Driven Deming Regression</strong></p>
<p>The utility features a simple dialog that helps to calculate the Deming Regression results. To use the dialog, click on the Deming Regression item in the menu or ribbon tab, shown above. A simple dialog appears.</p>
<p align="center"><img src="/images/2009-10/DemingRegressionDialog.png" alt="Deming Array Formula Calculations" /></p>
<p>Select the appropriate ranges for the inputs and outputs, press OK, and the program fills in the results.</p>
<p>Calculations made using the dialog are not lost when viewed on a machine that does not have the utility installed.</p>
<p><strong>Download and Install the Utility</strong></p>
<p>Click this <a href="/images/2009-10/PTSDemingRegression.xla" rel="nofollow" title="PTS Deming Regression Utility" >PTS Deming Regression Utility</a> link to download the utility. The download is a simple Excel add-in. Save it to any convenient directory, then install it following the instructions in <a href="http://peltiertech.com/WordPress/installing-an-excel-add-in/">Installing an Excel Add-In</a> or <a href="http://peltiertech.com/WordPress/installing-an-add-in-in-excel-2007/">Installing an Add-In in Excel 2007</a>.</p>
<p><strong>References</strong></p>
<p><a href="http://www.ahut.edu.cn/yxsz/ahkl/Teaching/Excel%20for%20Chemists/Ch17.pdf" rel="nofollow" >Chapter 17:  Creating  Custom  Functions</a>, Excel for Chemists: A Comprehensive Guide, 2nd Edition. by E. Joseph Billo, Copyright 2001 by John Wiley &amp; Sons, Inc.</p>
<p><a href="http://www.clinchem.org/cgi/reprint/25/3/432.pdf" rel="nofollow" >Incorrect Least-Squares Regression Coefficients in Method-Comparison Analysis</a> by P. Joanne Cornbleet and Nathan Gochman, Clin. Chem. 25/3, 432-438 (1979).</p>



Bookmark and share this entry:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdeming-regression-utility%2F&amp;title=Deming%20Regression%20Utility&amp;bodytext=I%20described%20an%20alternative%20linear%20regression%20approach%20in%20Deming%20Regression.%20Whereas%20the%20standard%20linear%20regression%20techniques%20assume%20that%20all%20measurement%20error%20in%20the%20calculated%20model%20is%20in%20the%20dependent%20variable%20Y%2C%20the%20Deming%20Regression%20technique%20co" title="Digg"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdeming-regression-utility%2F&amp;title=Deming%20Regression%20Utility&amp;notes=I%20described%20an%20alternative%20linear%20regression%20approach%20in%20Deming%20Regression.%20Whereas%20the%20standard%20linear%20regression%20techniques%20assume%20that%20all%20measurement%20error%20in%20the%20calculated%20model%20is%20in%20the%20dependent%20variable%20Y%2C%20the%20Deming%20Regression%20technique%20co" title="del.icio.us"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdeming-regression-utility%2F&amp;t=Deming%20Regression%20Utility" title="Facebook"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdeming-regression-utility%2F" title="Technorati"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Deming%20Regression%20Utility%20-%20http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdeming-regression-utility%2F" title="Twitter"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdeming-regression-utility%2F&amp;title=Deming%20Regression%20Utility" title="StumbleUpon"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdeming-regression-utility%2F&amp;title=Deming%20Regression%20Utility&amp;annotation=I%20described%20an%20alternative%20linear%20regression%20approach%20in%20Deming%20Regression.%20Whereas%20the%20standard%20linear%20regression%20techniques%20assume%20that%20all%20measurement%20error%20in%20the%20calculated%20model%20is%20in%20the%20dependent%20variable%20Y%2C%20the%20Deming%20Regression%20technique%20co" title="Google Bookmarks"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdeming-regression-utility%2F&amp;title=Deming%20Regression%20Utility" title="Reddit"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdeming-regression-utility%2F&amp;t=Deming%20Regression%20Utility" title="MySpace"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://slashdot.org/bookmark.pl?title=Deming%20Regression%20Utility&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdeming-regression-utility%2F" title="Slashdot"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdeming-regression-utility%2F&amp;title=Deming%20Regression%20Utility&amp;source=PTS+Blog+PTS+Excel+Charts+and+Tutorials+Blog&amp;summary=I%20described%20an%20alternative%20linear%20regression%20approach%20in%20Deming%20Regression.%20Whereas%20the%20standard%20linear%20regression%20techniques%20assume%20that%20all%20measurement%20error%20in%20the%20calculated%20model%20is%20in%20the%20dependent%20variable%20Y%2C%20the%20Deming%20Regression%20technique%20co" title="LinkedIn"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdeming-regression-utility%2F&amp;submitHeadline=Deming%20Regression%20Utility&amp;submitSummary=I%20described%20an%20alternative%20linear%20regression%20approach%20in%20Deming%20Regression.%20Whereas%20the%20standard%20linear%20regression%20techniques%20assume%20that%20all%20measurement%20error%20in%20the%20calculated%20model%20is%20in%20the%20dependent%20variable%20Y%2C%20the%20Deming%20Regression%20technique%20co&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://peltiertech.com/WordPress/deming-regression-utility/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Introducing PTS Dot Plot Utility</title>
		<link>http://peltiertech.com/WordPress/introducing-pts-dot-plot-utility/</link>
		<comments>http://peltiertech.com/WordPress/introducing-pts-dot-plot-utility/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 05:00:08 +0000</pubDate>
		<dc:creator>Jon Peltier</dc:creator>
				<category><![CDATA[Utilities]]></category>
		<category><![CDATA[Dot Plots]]></category>

		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=2350</guid>
		<description><![CDATA[Peltier Technical Services Inc is pleased to introduce the newest member of its suite of charting add-ins for Excel. The PTS Dot Plot Utility is based on the protocol in the Dot Plots tutorial on this web site, but it does all of the required calculations and chart manipulations automatically.
The Dot Plot Utility makes quick [...]]]></description>
			<content:encoded><![CDATA[<p>Peltier Technical Services Inc is pleased to introduce the newest member of its suite of charting add-ins for Excel. The <a href="http://peltiertech.com/Utility/DotPlotUtility.html" rel="nofollow" title="PTS Dot Plot Utility" >PTS Dot Plot Utility</a> is based on the protocol in the <a href="http://peltiertech.com/Excel/Charts/DotPlot.html" rel="nofollow" title="Dot Plot Tutorial by PTS Charts" >Dot Plots</a> tutorial on this web site, but it does all of the required calculations and chart manipulations automatically.</p>
<p>The Dot Plot Utility makes quick work of Dot Plots of one or more series, such as this population pyramid replacement showing US Male and Female population distribution by age group.</p>
<p align="center"><img src="http://peltiertech.com/Utility/pix/dot/DotPlotPopulation.png" alt="US Population Distribution by Gender and Age Group" /></p>
<p><span id="more-2350"></span>Like all PTS Chart Utilities, the Dot Plotter makes regular Excel charts, so you can format them to suit your needs.</p>
<p align="center"><img src="http://peltiertech.com/Utility/pix/dot/DotPlotPopulation2.png" alt="US Population Distribution by Gender and Age Group" /></p>
<p>Also like all PTS Chart Utilities, the Dot Plotter works in all Windows versions of Excel between 2000 and 2007. In &#8220;Classic&#8221; Excel, a Dot Plot menu item is added to the PTS Charts menu, and this menu is added if it is not already present. In Excel 2007, this Dot Plot item is added as a button to the PTS Charts ribbon tab, and this tab is added if it does not exist. A simple dialog allows the user to select some formatting options.</p>
<p align="center"><img src="http://peltiertech.com/Utility/pix/dot/DotPlotDialog.png" alt="Dot Plot Utility Dialog" /></p>
<p>The <a href="http://peltiertech.com/Utility/DotPlotUtility.html" rel="nofollow" title="PTS Dot Plot Utility" >PTS Dot Plot Utility</a> is priced at $39.00 US, but for the next four weeks it is available at a discounted $29.00. If you use this chart type frequently, you owe it to yourself to check out this timesaver.</p>



Bookmark and share this entry:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fintroducing-pts-dot-plot-utility%2F&amp;title=Introducing%20PTS%20Dot%20Plot%20Utility&amp;bodytext=Peltier%20Technical%20Services%20Inc%20is%20pleased%20to%20introduce%20the%20newest%20member%20of%20its%20suite%20of%20charting%20add-ins%20for%20Excel.%20The%20PTS%20Dot%20Plot%20Utility%20is%20based%20on%20the%20protocol%20in%20the%20Dot%20Plots%20tutorial%20on%20this%20web%20site%2C%20but%20it%20does%20all%20of%20the%20required%20calcula" title="Digg"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fintroducing-pts-dot-plot-utility%2F&amp;title=Introducing%20PTS%20Dot%20Plot%20Utility&amp;notes=Peltier%20Technical%20Services%20Inc%20is%20pleased%20to%20introduce%20the%20newest%20member%20of%20its%20suite%20of%20charting%20add-ins%20for%20Excel.%20The%20PTS%20Dot%20Plot%20Utility%20is%20based%20on%20the%20protocol%20in%20the%20Dot%20Plots%20tutorial%20on%20this%20web%20site%2C%20but%20it%20does%20all%20of%20the%20required%20calcula" title="del.icio.us"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fintroducing-pts-dot-plot-utility%2F&amp;t=Introducing%20PTS%20Dot%20Plot%20Utility" title="Facebook"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fintroducing-pts-dot-plot-utility%2F" title="Technorati"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Introducing%20PTS%20Dot%20Plot%20Utility%20-%20http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fintroducing-pts-dot-plot-utility%2F" title="Twitter"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fintroducing-pts-dot-plot-utility%2F&amp;title=Introducing%20PTS%20Dot%20Plot%20Utility" title="StumbleUpon"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fintroducing-pts-dot-plot-utility%2F&amp;title=Introducing%20PTS%20Dot%20Plot%20Utility&amp;annotation=Peltier%20Technical%20Services%20Inc%20is%20pleased%20to%20introduce%20the%20newest%20member%20of%20its%20suite%20of%20charting%20add-ins%20for%20Excel.%20The%20PTS%20Dot%20Plot%20Utility%20is%20based%20on%20the%20protocol%20in%20the%20Dot%20Plots%20tutorial%20on%20this%20web%20site%2C%20but%20it%20does%20all%20of%20the%20required%20calcula" title="Google Bookmarks"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fintroducing-pts-dot-plot-utility%2F&amp;title=Introducing%20PTS%20Dot%20Plot%20Utility" title="Reddit"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fintroducing-pts-dot-plot-utility%2F&amp;t=Introducing%20PTS%20Dot%20Plot%20Utility" title="MySpace"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://slashdot.org/bookmark.pl?title=Introducing%20PTS%20Dot%20Plot%20Utility&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fintroducing-pts-dot-plot-utility%2F" title="Slashdot"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fintroducing-pts-dot-plot-utility%2F&amp;title=Introducing%20PTS%20Dot%20Plot%20Utility&amp;source=PTS+Blog+PTS+Excel+Charts+and+Tutorials+Blog&amp;summary=Peltier%20Technical%20Services%20Inc%20is%20pleased%20to%20introduce%20the%20newest%20member%20of%20its%20suite%20of%20charting%20add-ins%20for%20Excel.%20The%20PTS%20Dot%20Plot%20Utility%20is%20based%20on%20the%20protocol%20in%20the%20Dot%20Plots%20tutorial%20on%20this%20web%20site%2C%20but%20it%20does%20all%20of%20the%20required%20calcula" title="LinkedIn"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fintroducing-pts-dot-plot-utility%2F&amp;submitHeadline=Introducing%20PTS%20Dot%20Plot%20Utility&amp;submitSummary=Peltier%20Technical%20Services%20Inc%20is%20pleased%20to%20introduce%20the%20newest%20member%20of%20its%20suite%20of%20charting%20add-ins%20for%20Excel.%20The%20PTS%20Dot%20Plot%20Utility%20is%20based%20on%20the%20protocol%20in%20the%20Dot%20Plots%20tutorial%20on%20this%20web%20site%2C%20but%20it%20does%20all%20of%20the%20required%20calcula&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://peltiertech.com/WordPress/introducing-pts-dot-plot-utility/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>LOESS Utility for Excel</title>
		<link>http://peltiertech.com/WordPress/loess-utility-for-excel/</link>
		<comments>http://peltiertech.com/WordPress/loess-utility-for-excel/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 07:00:04 +0000</pubDate>
		<dc:creator>Jon Peltier</dc:creator>
				<category><![CDATA[Utilities]]></category>
		<category><![CDATA[LOESS]]></category>
		<category><![CDATA[LOWESS]]></category>
		<category><![CDATA[Regression]]></category>
		<category><![CDATA[Smoothing]]></category>
		<category><![CDATA[user defined functions]]></category>

		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=2148</guid>
		<description><![CDATA[In LOESS Smoothing in Excel I described a technique for smoothing data, which essentially runs a moving weighted regression on the data set. The amount of smoothing that can be achieved without washing out the data is remarkable. In that post I showed a screen shot of a dialog of a working LOESS utility.
The LOESS [...]]]></description>
			<content:encoded><![CDATA[<p>In <a href="http://peltiertech.com/WordPress/loess-smoothing-in-excel/"title="LOESS Smoothing in Excel" >LOESS Smoothing in Excel</a> I described a technique for smoothing data, which essentially runs a moving weighted regression on the data set. The amount of smoothing that can be achieved without washing out the data is remarkable. In that post I showed a screen shot of a dialog of a working LOESS utility.</p>
<p style="margin-left: 36pt; margin-right: 54pt;"><em>The LOESS utility for Excel has been updated, and the interface made more flexible. The new version is described in <a href="../loess-utility-awesome-update/" rel="nofollow" title="LOESS Utility – Awesome Update | PTS Blog" >LOESS Utility – Awesome Update</a>, where there is a link to download the new utility.</em></p>
<p>I&#8217;ve used this utility in-house for a while, adding little enhancements here and there. I&#8217;ve come up with three main ways to use it, illustrated in the dialog screen shots below. Based on the option selected in the top of the dialog, the mode of operation is changed.</p>
<p><span id="more-2148"></span>Here the data is arranged simply, with the input X and Y in two adjacent columns, and the output Y, calculated using the input X values, placed into the third adjacent column.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-06/LOESS_dlg_a.png" alt="PTS LOESS Utility Dialog A" /></p>
<p>Here the input X and Y are in two columns, and the output Y is calculated using the input X values, but is located in another column. This is handy if you are calculating smoothed values for different values of alpha or N and placing the calculations in different columns.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-06/LOESS_dlg_b.png" alt="PTS LOESS Utility Dialog B" /></p>
<p>Finally, the input X and Y values are in two adjacent columns, and the output X and Y are in two other adjacent columns, not adjacent to the input columns. Here the output X values need not be the same as the input X values.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-06/LOESS_dlg_c.png" alt="PTS LOESS Utility Dialog C" /></p>
<p>When installed, the utility places a control on the PTS Charts menu. If you haven&#8217;t installed other PTS Chart Utilities, this menu will be created first.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-06/LOESS_menu.png" alt="PTS LOESS Utility Menu" /></p>
<p>Compare my weight over the past three years, smoothed using a seven-day moving average&#8230;</p>
<p align="center"><img src="http://peltiertech.com/images/2009-06/weight-mvavg.png" alt="Moving Average of Three Years of Weight Records" /></p>
<p>&#8230; and using the LOESS utility. The main trends are plainly visible, while the short term fluctuations have been removed.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-06/weight-loess.png" alt="LOESS Smoothing of Three Years of Weight Records" /></p>
<p>The utility is a regular old Excel add-in, <span style="text-decoration: line-through;">which can be downloaded in the zip file <a href="http://peltiertech.com/WordPress/installing-an-excel-add-in/"title="PTS LOESS Utility (zip file)">LOESS.zip</a></span> <em>(see the update below for a new version of the utility)</em>. Install this add-in using the protocol in <a title="Installing an Excel Add-In" >Installing an Excel Add-In</a> or <a href="http://peltiertech.com/WordPress/installing-an-add-in-in-excel-2007/"title="Installing an Add-In in Excel 2007" >Installing an Add-In in Excel 2007</a>.</p>
<p>Try it out, and tell me what you hate about it.</p>
<p><em><strong>Update 8 October 2009</strong></em></p>
<p><em>The LOESS utility for Excel has been updated, and the interface made more flexible. It is described in <a href="http://peltiertech.com/WordPress/loess-utility-awesome-update/"title="LOESS Utility – Awesome Update | PTS Blog" >LOESS Utility – Awesome Update</a>, where there is a link to download the new utility.</em></p>



Bookmark and share this entry:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-for-excel%2F&amp;title=LOESS%20Utility%20for%20Excel&amp;bodytext=In%20LOESS%20Smoothing%20in%20Excel%20I%20described%20a%20technique%20for%20smoothing%20data%2C%20which%20essentially%20runs%20a%20moving%20weighted%20regression%20on%20the%20data%20set.%20The%20amount%20of%20smoothing%20that%20can%20be%20achieved%20without%20washing%20out%20the%20data%20is%20remarkable.%20In%20that%20post%20I%20showe" title="Digg"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-for-excel%2F&amp;title=LOESS%20Utility%20for%20Excel&amp;notes=In%20LOESS%20Smoothing%20in%20Excel%20I%20described%20a%20technique%20for%20smoothing%20data%2C%20which%20essentially%20runs%20a%20moving%20weighted%20regression%20on%20the%20data%20set.%20The%20amount%20of%20smoothing%20that%20can%20be%20achieved%20without%20washing%20out%20the%20data%20is%20remarkable.%20In%20that%20post%20I%20showe" title="del.icio.us"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-for-excel%2F&amp;t=LOESS%20Utility%20for%20Excel" title="Facebook"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-for-excel%2F" title="Technorati"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=LOESS%20Utility%20for%20Excel%20-%20http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-for-excel%2F" title="Twitter"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-for-excel%2F&amp;title=LOESS%20Utility%20for%20Excel" title="StumbleUpon"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-for-excel%2F&amp;title=LOESS%20Utility%20for%20Excel&amp;annotation=In%20LOESS%20Smoothing%20in%20Excel%20I%20described%20a%20technique%20for%20smoothing%20data%2C%20which%20essentially%20runs%20a%20moving%20weighted%20regression%20on%20the%20data%20set.%20The%20amount%20of%20smoothing%20that%20can%20be%20achieved%20without%20washing%20out%20the%20data%20is%20remarkable.%20In%20that%20post%20I%20showe" title="Google Bookmarks"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-for-excel%2F&amp;title=LOESS%20Utility%20for%20Excel" title="Reddit"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-for-excel%2F&amp;t=LOESS%20Utility%20for%20Excel" title="MySpace"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://slashdot.org/bookmark.pl?title=LOESS%20Utility%20for%20Excel&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-for-excel%2F" title="Slashdot"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-for-excel%2F&amp;title=LOESS%20Utility%20for%20Excel&amp;source=PTS+Blog+PTS+Excel+Charts+and+Tutorials+Blog&amp;summary=In%20LOESS%20Smoothing%20in%20Excel%20I%20described%20a%20technique%20for%20smoothing%20data%2C%20which%20essentially%20runs%20a%20moving%20weighted%20regression%20on%20the%20data%20set.%20The%20amount%20of%20smoothing%20that%20can%20be%20achieved%20without%20washing%20out%20the%20data%20is%20remarkable.%20In%20that%20post%20I%20showe" title="LinkedIn"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Floess-utility-for-excel%2F&amp;submitHeadline=LOESS%20Utility%20for%20Excel&amp;submitSummary=In%20LOESS%20Smoothing%20in%20Excel%20I%20described%20a%20technique%20for%20smoothing%20data%2C%20which%20essentially%20runs%20a%20moving%20weighted%20regression%20on%20the%20data%20set.%20The%20amount%20of%20smoothing%20that%20can%20be%20achieved%20without%20washing%20out%20the%20data%20is%20remarkable.%20In%20that%20post%20I%20showe&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://peltiertech.com/WordPress/loess-utility-for-excel/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Box and Whisker Chart Median Options</title>
		<link>http://peltiertech.com/WordPress/box-whisker-chart-median-options/</link>
		<comments>http://peltiertech.com/WordPress/box-whisker-chart-median-options/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 10:00:25 +0000</pubDate>
		<dc:creator>Jon Peltier</dc:creator>
				<category><![CDATA[Utilities]]></category>

		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1828</guid>
		<description><![CDATA[Last fall I released my Box and Whisker Chart Utility, which fills a need for such a chart in Excel. It&#8217;s been somewhat popular, and after some frantic bug fixing the first week or so, there have been no further bug reports. There was one design decision I made early on which was not satisfactory [...]]]></description>
			<content:encoded><![CDATA[<p>Last fall I released my <a href="http://peltiertech.com/WordPress/announcing-the-box-and-whisker-chart-utility/"title="Box and Whisker Chart Utility" >Box and Whisker Chart Utility</a>, which fills a need for such a chart in Excel. It&#8217;s been somewhat popular, and after some frantic bug fixing the first week or so, there have been no further bug reports. There was one design decision I made early on which was not satisfactory to myself at the time, and at least one user has found issues with it. The issue is that the median is represented by a gap between the second and third quartile boxes.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-04/MedianGap.png" alt="Waterfall Chart with Median Gap" /><br />
 <strong>Waterfall Chart with Median Indicated by Gap</strong></p>
<p>The problem with the gap is that it&#8217;s hard to control its thickness closely. There is some variation from one category to the next, due I expect to rounding errors in pixel counting. If the interquartile range is small, i.e., less than twice the gap thickness, the boxes may not appear at all. Also in an earlier beta version, if the median was near zero, the boxes may appear incorrectly above or below the horizontal axis. But the decision to choose this technique was not as silly as this makes it sound.</p>
<p><span id="more-1828"></span>The first waterfall chart program I came up with, about three or four years ago, used boxes that had borders. This provides a somewhat conventional appearance, and the median is obvious.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-04/QuartileBordersXL.png" alt="Waterfall Chart with Borders on Quartile Boxes - Excel View" /><br />
 <strong>Waterfall Chart with Borders on Quartile Boxes &#8211; Excel View</strong></p>
<p>I didn&#8217;t like this approach, however, because when Excel stacks column series, the border between stacked columns is twice as thick as the border around a single column. When the charts were copied and pasted as pictures, or exported as image files, this double border reverted to a single border (see below), but it made me crazy in the actual charts.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-04/QuartileBorders.png" alt="Waterfall Chart with Borders on Quartile Boxes - Export View" /><br />
 <strong>Waterfall Chart with Borders on Quartile Boxes &#8211; Export View</strong></p>
<p>An intermediate version of the utility removed the borders, and used different colors for the second and third quartile boxes. The problem with this approach was deciding on two colors which do not clash (e.g., not red and green) and have approximately the same visual effect (i.e., not light gray and black). And oh yeah, the colors have to be included in the user&#8217;s color palette.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-04/QuartileColors.png" alt="Waterfall Chart with Different Colored Quartile Boxes" /><br />
 <strong>Waterfall Chart with Different Colored Quartile Boxes</strong></p>
<p>So I scrapped the quartile boxes with borders and the different colored quartiles in favor of the median gaps. The gaps addressed the problems of the double thickness borders and of the different colored boxes, and if the user changed the background color of the chart, the gap was filled with the background color. Of course, everyone should want a white background.</p>
<p>I could have lived with the issues mentioned above (irregular gap thickness, obscuring of thin boxes), until a customer pointed out another issue with the gaps. If you convert to a logarithmic Y axis scale, the default gap is narrow at the top of the chart and wide at the bottom. The following chart exaggerates the effect.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-04/MedianGapLog.png" alt="Logarithmically Scaled Waterfall Chart with Median Gap" /><br />
 <strong>Logarithmically Scaled Waterfall Chart with Median Indicated by Gap</strong></p>
<p>Since I now can&#8217;t live with the median gap approach, I need to select another way to display the median. Another way to show the median is with a horizontal line, which I thought I had tried, but I can find no residue of such trials. You can use a dark line or a light line.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-04/MedianDarkLine.png" alt="Waterfall Chart with Dark Line for Median" /><br />
 <strong>Waterfall Chart with Median Indicated by Dark Line</strong></p>
<p align="center"><img src="http://peltiertech.com/images/2009-04/MedianLightLine.png" alt="Waterfall Chart with Light Line for Median" /><br />
 <strong>Waterfall Chart with Median Indicated by Light Line</strong></p>
<p>The light line looks like the gap, except the pixel counting for a line produces consistent line thicknesses, at least until Excel 2007, where antialiasing runs amok. But I think I prefer the dark line.</p>
<p>I could combine the horizontal line with a bordered box that spans both interior quartiles, giving the appearance of the bordered quartiles without a double border at the median.</p>
<p>To help answer this question, I&#8217;m asking my readers:</p>
<p>What technique should the Box and Whisker Chart Utility use to indicate the median value? Should more than one option be offered?</p>
<ul style="margin-left: 36px;">
<li>Gap between Quartile Boxes</li>
<li>Border on Quartile Boxes</li>
<li>Differently Colored Quartile Boxes</li>
<li>Dark Line at Median</li>
<li>Light Line at Median</li>
<li>Dark Line and Dark Interior Quartile Box</li>
<li>Something Else — Please Describe</li>
</ul>
<p>Any of these alternatives will be fairly quick to implement, and any customers will have the option to upgrade for only the price of an email.</p>
<p><em><strong>Update 27 June 2009</strong></em></p>
<p><em>Sometime late in May or early in June, I decided to switch to a discrete line to encode the median, and made the needed adjustments to my utility. This is the next-to-last option shown above. Using this approach actually simplified the utility.</em></p>



Bookmark and share this entry:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbox-whisker-chart-median-options%2F&amp;title=Box%20and%20Whisker%20Chart%20Median%20Options&amp;bodytext=Last%20fall%20I%20released%20my%20Box%20and%20Whisker%20Chart%20Utility%2C%20which%20fills%20a%20need%20for%20such%20a%20chart%20in%20Excel.%20It%27s%20been%20somewhat%20popular%2C%20and%20after%20some%20frantic%20bug%20fixing%20the%20first%20week%20or%20so%2C%20there%20have%20been%20no%20further%20bug%20reports.%20There%20was%20one%20design%20deci" title="Digg"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbox-whisker-chart-median-options%2F&amp;title=Box%20and%20Whisker%20Chart%20Median%20Options&amp;notes=Last%20fall%20I%20released%20my%20Box%20and%20Whisker%20Chart%20Utility%2C%20which%20fills%20a%20need%20for%20such%20a%20chart%20in%20Excel.%20It%27s%20been%20somewhat%20popular%2C%20and%20after%20some%20frantic%20bug%20fixing%20the%20first%20week%20or%20so%2C%20there%20have%20been%20no%20further%20bug%20reports.%20There%20was%20one%20design%20deci" title="del.icio.us"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbox-whisker-chart-median-options%2F&amp;t=Box%20and%20Whisker%20Chart%20Median%20Options" title="Facebook"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbox-whisker-chart-median-options%2F" title="Technorati"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Box%20and%20Whisker%20Chart%20Median%20Options%20-%20http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbox-whisker-chart-median-options%2F" title="Twitter"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbox-whisker-chart-median-options%2F&amp;title=Box%20and%20Whisker%20Chart%20Median%20Options" title="StumbleUpon"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbox-whisker-chart-median-options%2F&amp;title=Box%20and%20Whisker%20Chart%20Median%20Options&amp;annotation=Last%20fall%20I%20released%20my%20Box%20and%20Whisker%20Chart%20Utility%2C%20which%20fills%20a%20need%20for%20such%20a%20chart%20in%20Excel.%20It%27s%20been%20somewhat%20popular%2C%20and%20after%20some%20frantic%20bug%20fixing%20the%20first%20week%20or%20so%2C%20there%20have%20been%20no%20further%20bug%20reports.%20There%20was%20one%20design%20deci" title="Google Bookmarks"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbox-whisker-chart-median-options%2F&amp;title=Box%20and%20Whisker%20Chart%20Median%20Options" title="Reddit"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbox-whisker-chart-median-options%2F&amp;t=Box%20and%20Whisker%20Chart%20Median%20Options" title="MySpace"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://slashdot.org/bookmark.pl?title=Box%20and%20Whisker%20Chart%20Median%20Options&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbox-whisker-chart-median-options%2F" title="Slashdot"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbox-whisker-chart-median-options%2F&amp;title=Box%20and%20Whisker%20Chart%20Median%20Options&amp;source=PTS+Blog+PTS+Excel+Charts+and+Tutorials+Blog&amp;summary=Last%20fall%20I%20released%20my%20Box%20and%20Whisker%20Chart%20Utility%2C%20which%20fills%20a%20need%20for%20such%20a%20chart%20in%20Excel.%20It%27s%20been%20somewhat%20popular%2C%20and%20after%20some%20frantic%20bug%20fixing%20the%20first%20week%20or%20so%2C%20there%20have%20been%20no%20further%20bug%20reports.%20There%20was%20one%20design%20deci" title="LinkedIn"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbox-whisker-chart-median-options%2F&amp;submitHeadline=Box%20and%20Whisker%20Chart%20Median%20Options&amp;submitSummary=Last%20fall%20I%20released%20my%20Box%20and%20Whisker%20Chart%20Utility%2C%20which%20fills%20a%20need%20for%20such%20a%20chart%20in%20Excel.%20It%27s%20been%20somewhat%20popular%2C%20and%20after%20some%20frantic%20bug%20fixing%20the%20first%20week%20or%20so%2C%20there%20have%20been%20no%20further%20bug%20reports.%20There%20was%20one%20design%20deci&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://peltiertech.com/WordPress/box-whisker-chart-median-options/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>BonaVista Releases Chart Tamer</title>
		<link>http://peltiertech.com/WordPress/bonavista-releases-chart-tamer/</link>
		<comments>http://peltiertech.com/WordPress/bonavista-releases-chart-tamer/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 09:00:04 +0000</pubDate>
		<dc:creator>Jon Peltier</dc:creator>
				<category><![CDATA[Utilities]]></category>
		<category><![CDATA[BonaVista Systems]]></category>
		<category><![CDATA[Chart Tamer]]></category>

		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1760</guid>
		<description><![CDATA[BonaVista Systems, the makers of the MicroCharts family of sparkline and dashboard utilities for Microsoft Excel, has released a new product called Chart Tamer. Chart Tamer is designed to simplify and beautify Excel charts. Actually, I should not say &#8220;beautify&#8221;, because that implies embellishment. Chart Tamer simplifies and clarifies Excel charts.

A peek at the Chart [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bonavistasystems.com/" rel="nofollow" title="BonaVista Systems" >BonaVista Systems</a>, the makers of the <a href="http://www.bonavistasystems.com/Products_SparkLiner_Overview.html" rel="nofollow" title="BonaVista MicroCharts" >MicroCharts</a> family of sparkline and dashboard utilities for <strong>Microsoft Excel</strong>, has released a new product called <a href="http://www.bonavistasystems.com/Products_ChartTamer_Overview.html" rel="nofollow" title="BonaVista Chart Tamer" >Chart Tamer</a>. Chart Tamer is designed to simplify and beautify Excel charts. Actually, I should not say &#8220;beautify&#8221;, because that implies embellishment. Chart Tamer simplifies and clarifies Excel charts.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-04/charttamertoolbar.png" alt="Chart Tamer Toolbar" /></p>
<p>A peek at the Chart Tamer dialogs shows how it accomplishes its goals. First, Excel&#8217;s available chart types have been whittled down by eliminating pie and donut charts, radar charts, and all 3D charts. Based on the relationships which you wish to display (more than one can be selected for each chart), and on how you wish to feature this information, Chart Tamer offers a subset of these for you to select from.<span id="more-1760"></span></p>
<p align="center"><img src="http://peltiertech.com/images/2009-04/charttamerdlg1.png" alt="Chart Tamer Dialog" /></p>
<p>For example, if I want to display some time series data, Chart Tamer disables chart types which are unsuited for this data.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-04/charttamerdlg2.png" alt="Chart Tamer Dialog" /></p>
<p>The resulting chart is clean, without the extraneous elements of a default Excel chart. By default the chart includes the legend, which I&#8217;ve deleted in the sample below. I&#8217;ve also enlarged the chart within its enclosing shape, to reduce the expansive borders typical of Excel charts prior to 2007.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-04/charttamerchart.png" alt="Chart Tamer Chart" /></p>
<p>I&#8217;ve left out the dialog that allows you to show chart and axis titles and gridlines.</p>
<p>Chart Tamer cleans up charts by employing color schemes designed by an expert in human visual physiology.  Colors can be defined for the data elements of the chart . . .</p>
<p align="center"><img src="http://peltiertech.com/images/2009-04/charttamerdefaultdlg1.png" alt="Chart Tamer Defaults" /></p>
<p>. . . and for non data elements as well.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-04/charttamerdefaultdlg2.png" alt="Chart Tamer Defaults" /></p>
<p>Chart Tamer can be used to clean up existing charts using the settings for new charts. Chart Tamer includes a color picker to help you format cell text and background colors, and it includes a cell border formatting feature (below).</p>
<p align="center"><img src="http://peltiertech.com/images/2009-04/charttamerborders.png" alt="Chart Tamer Border Formatter" /></p>
<p>One issue to be aware of is that Chart Tamer changes the default palette in your Excel 2003 installation, replacing those awful default Excel colors with its own eyesight-friendly shades. In general this is a good thing, unless you&#8217;ve customized your palette to match your company logo or favorite sports team&#8217;s uniforms.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-04/charttamerpalette.png" alt="Chart Tamer Color Palette" /></p>
<p>I tested the beta version of Chart Tamer, but haven&#8217;t done anything more than drive this version quickly around the block. The beta operated smoothly, and didn&#8217;t break anything; so far the final version looks good as well.</p>
<p>BonaVista Systems offers a <a href="http://www.bonavistasystems.com/DownloadMicroCharts.html" rel="nofollow" title="Chart Tamer 30-day trial download" >30-day trial of Chart Tamer</a>. They didn&#8217;t pay me anything to write this review, they didn&#8217;t even ask. I just thought it was something that my readers might be interested in.</p>



Bookmark and share this entry:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbonavista-releases-chart-tamer%2F&amp;title=BonaVista%20Releases%20Chart%20Tamer&amp;bodytext=BonaVista%20Systems%2C%20the%20makers%20of%20the%20MicroCharts%20family%20of%20sparkline%20and%20dashboard%20utilities%20for%20Microsoft%20Excel%2C%20has%20released%20a%20new%20product%20called%20Chart%20Tamer.%20Chart%20Tamer%20is%20designed%20to%20simplify%20and%20beautify%20Excel%20charts.%20Actually%2C%20I%20should%20not%20say" title="Digg"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbonavista-releases-chart-tamer%2F&amp;title=BonaVista%20Releases%20Chart%20Tamer&amp;notes=BonaVista%20Systems%2C%20the%20makers%20of%20the%20MicroCharts%20family%20of%20sparkline%20and%20dashboard%20utilities%20for%20Microsoft%20Excel%2C%20has%20released%20a%20new%20product%20called%20Chart%20Tamer.%20Chart%20Tamer%20is%20designed%20to%20simplify%20and%20beautify%20Excel%20charts.%20Actually%2C%20I%20should%20not%20say" title="del.icio.us"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbonavista-releases-chart-tamer%2F&amp;t=BonaVista%20Releases%20Chart%20Tamer" title="Facebook"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbonavista-releases-chart-tamer%2F" title="Technorati"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=BonaVista%20Releases%20Chart%20Tamer%20-%20http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbonavista-releases-chart-tamer%2F" title="Twitter"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbonavista-releases-chart-tamer%2F&amp;title=BonaVista%20Releases%20Chart%20Tamer" title="StumbleUpon"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbonavista-releases-chart-tamer%2F&amp;title=BonaVista%20Releases%20Chart%20Tamer&amp;annotation=BonaVista%20Systems%2C%20the%20makers%20of%20the%20MicroCharts%20family%20of%20sparkline%20and%20dashboard%20utilities%20for%20Microsoft%20Excel%2C%20has%20released%20a%20new%20product%20called%20Chart%20Tamer.%20Chart%20Tamer%20is%20designed%20to%20simplify%20and%20beautify%20Excel%20charts.%20Actually%2C%20I%20should%20not%20say" title="Google Bookmarks"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbonavista-releases-chart-tamer%2F&amp;title=BonaVista%20Releases%20Chart%20Tamer" title="Reddit"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbonavista-releases-chart-tamer%2F&amp;t=BonaVista%20Releases%20Chart%20Tamer" title="MySpace"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://slashdot.org/bookmark.pl?title=BonaVista%20Releases%20Chart%20Tamer&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbonavista-releases-chart-tamer%2F" title="Slashdot"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbonavista-releases-chart-tamer%2F&amp;title=BonaVista%20Releases%20Chart%20Tamer&amp;source=PTS+Blog+PTS+Excel+Charts+and+Tutorials+Blog&amp;summary=BonaVista%20Systems%2C%20the%20makers%20of%20the%20MicroCharts%20family%20of%20sparkline%20and%20dashboard%20utilities%20for%20Microsoft%20Excel%2C%20has%20released%20a%20new%20product%20called%20Chart%20Tamer.%20Chart%20Tamer%20is%20designed%20to%20simplify%20and%20beautify%20Excel%20charts.%20Actually%2C%20I%20should%20not%20say" title="LinkedIn"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fbonavista-releases-chart-tamer%2F&amp;submitHeadline=BonaVista%20Releases%20Chart%20Tamer&amp;submitSummary=BonaVista%20Systems%2C%20the%20makers%20of%20the%20MicroCharts%20family%20of%20sparkline%20and%20dashboard%20utilities%20for%20Microsoft%20Excel%2C%20has%20released%20a%20new%20product%20called%20Chart%20Tamer.%20Chart%20Tamer%20is%20designed%20to%20simplify%20and%20beautify%20Excel%20charts.%20Actually%2C%20I%20should%20not%20say&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://peltiertech.com/WordPress/bonavista-releases-chart-tamer/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Marimekko Chart Utility</title>
		<link>http://peltiertech.com/WordPress/marimekko-chart-utility/</link>
		<comments>http://peltiertech.com/WordPress/marimekko-chart-utility/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 10:00:05 +0000</pubDate>
		<dc:creator>Jon Peltier</dc:creator>
				<category><![CDATA[Utilities]]></category>

		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1596</guid>
		<description><![CDATA[I recently wrote a tutorial showing how to create Marimekko Charts in Excel. Like a lot of the chart types I write about, the Marimekko requires a substantial amount of data engineering. Face it, these charts are tedious to build manually.

In order to reduce the tedium of manually rearranging the data and then manually constructing [...]]]></description>
			<content:encoded><![CDATA[<p>I recently wrote a tutorial showing how to create <a href="http://peltiertech.com/WordPress/marimekko-charts/"title="Marimekko Charts" >Marimekko Charts</a> in Excel. Like a lot of the chart types I write about, the Marimekko requires a substantial amount of data engineering. Face it, these charts are tedious to build manually.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-02/Marimekko11.png" alt="Marimekko Chart" /></p>
<p>In order to reduce the tedium of manually rearranging the data and then manually constructing the chart, I&#8217;ve developed the <a href="http://peltiertech.com/Utility/MarimekkoUtility.html" rel="nofollow" title="PTS Merimekko Chart Utility" >PTS Merimekko Chart Utility</a>. Like all of my utilities, it reduces the manual process to simply selecting a range, choosing a couple of options, and admiring the result.</p>
<p><span id="more-1596"></span>There are some problems with Marimekko Charts. Some of the data in the &#8220;mekko&#8221; is encoded as linear dimensions, that is, the widths and heights of the rectangular shapes comprising the chart. The linear comparisons suffer from the shapes being stacked: without a common baseline it is more difficult to compare their dimensions.&nbsp; Worse, some of the data is encoded as the product of the linear dimensions, that is, by the area of the shapes. Because of this, it has been said that the Marimekko is hardly better than a square pie chart.</p>
<p>These issues can be overcome by replacing the Marimekko with a set of bar charts, perhaps arranged in a panel chart.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-02/MariBar_PanelColumns.png" alt="Panel Chart" /></p>
<p>Despite the shortcomings of the Marimekko, it is broadly used in many industries, particularly in portfolio analysis, such as used in marketing departments and in financial institutions. The Marimekko can provide a rapid qualitative view of the constituents of a portfolio.</p>



Bookmark and share this entry:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fmarimekko-chart-utility%2F&amp;title=Marimekko%20Chart%20Utility&amp;bodytext=I%20recently%20wrote%20a%20tutorial%20showing%20how%20to%20create%20Marimekko%20Charts%20in%20Excel.%20Like%20a%20lot%20of%20the%20chart%20types%20I%20write%20about%2C%20the%20Marimekko%20requires%20a%20substantial%20amount%20of%20data%20engineering.%20Face%20it%2C%20these%20charts%20are%20tedious%20to%20build%20manually.%0D%0A%0D%0A%0D%0AIn%20or" title="Digg"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fmarimekko-chart-utility%2F&amp;title=Marimekko%20Chart%20Utility&amp;notes=I%20recently%20wrote%20a%20tutorial%20showing%20how%20to%20create%20Marimekko%20Charts%20in%20Excel.%20Like%20a%20lot%20of%20the%20chart%20types%20I%20write%20about%2C%20the%20Marimekko%20requires%20a%20substantial%20amount%20of%20data%20engineering.%20Face%20it%2C%20these%20charts%20are%20tedious%20to%20build%20manually.%0D%0A%0D%0A%0D%0AIn%20or" title="del.icio.us"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fmarimekko-chart-utility%2F&amp;t=Marimekko%20Chart%20Utility" title="Facebook"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fmarimekko-chart-utility%2F" title="Technorati"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Marimekko%20Chart%20Utility%20-%20http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fmarimekko-chart-utility%2F" title="Twitter"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fmarimekko-chart-utility%2F&amp;title=Marimekko%20Chart%20Utility" title="StumbleUpon"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fmarimekko-chart-utility%2F&amp;title=Marimekko%20Chart%20Utility&amp;annotation=I%20recently%20wrote%20a%20tutorial%20showing%20how%20to%20create%20Marimekko%20Charts%20in%20Excel.%20Like%20a%20lot%20of%20the%20chart%20types%20I%20write%20about%2C%20the%20Marimekko%20requires%20a%20substantial%20amount%20of%20data%20engineering.%20Face%20it%2C%20these%20charts%20are%20tedious%20to%20build%20manually.%0D%0A%0D%0A%0D%0AIn%20or" title="Google Bookmarks"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fmarimekko-chart-utility%2F&amp;title=Marimekko%20Chart%20Utility" title="Reddit"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fmarimekko-chart-utility%2F&amp;t=Marimekko%20Chart%20Utility" title="MySpace"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://slashdot.org/bookmark.pl?title=Marimekko%20Chart%20Utility&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fmarimekko-chart-utility%2F" title="Slashdot"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fmarimekko-chart-utility%2F&amp;title=Marimekko%20Chart%20Utility&amp;source=PTS+Blog+PTS+Excel+Charts+and+Tutorials+Blog&amp;summary=I%20recently%20wrote%20a%20tutorial%20showing%20how%20to%20create%20Marimekko%20Charts%20in%20Excel.%20Like%20a%20lot%20of%20the%20chart%20types%20I%20write%20about%2C%20the%20Marimekko%20requires%20a%20substantial%20amount%20of%20data%20engineering.%20Face%20it%2C%20these%20charts%20are%20tedious%20to%20build%20manually.%0D%0A%0D%0A%0D%0AIn%20or" title="LinkedIn"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fmarimekko-chart-utility%2F&amp;submitHeadline=Marimekko%20Chart%20Utility&amp;submitSummary=I%20recently%20wrote%20a%20tutorial%20showing%20how%20to%20create%20Marimekko%20Charts%20in%20Excel.%20Like%20a%20lot%20of%20the%20chart%20types%20I%20write%20about%2C%20the%20Marimekko%20requires%20a%20substantial%20amount%20of%20data%20engineering.%20Face%20it%2C%20these%20charts%20are%20tedious%20to%20build%20manually.%0D%0A%0D%0A%0D%0AIn%20or&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://peltiertech.com/WordPress/marimekko-chart-utility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel Utilities in the Works</title>
		<link>http://peltiertech.com/WordPress/excel-utilities-in-the-works/</link>
		<comments>http://peltiertech.com/WordPress/excel-utilities-in-the-works/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 11:00:36 +0000</pubDate>
		<dc:creator>Jon Peltier</dc:creator>
				<category><![CDATA[Utilities]]></category>

		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1447</guid>
		<description><![CDATA[As my regular readers know, I&#8217;ve started building Excel charting utilities. It&#8217;s challenging and rewarding, though I certainly won&#8217;t retire to my own island in the Caribbean on these utilities alone. Over the past few months I&#8217;ve released commercial utilities that create charts that Excel users only used to dream of, such as Waterfall Charts, [...]]]></description>
			<content:encoded><![CDATA[<p>As my regular readers know, I&#8217;ve started building Excel charting utilities. It&#8217;s challenging and rewarding, though I certainly won&#8217;t retire to my own island in the Caribbean on these utilities alone. Over the past few months I&#8217;ve released commercial utilities that create charts that Excel users only used to dream of, such as <a href="http://peltiertech.com/Utility/WaterfallUtility.html" rel="nofollow" title="Waterfall Chart Utility" >Waterfall Charts</a>, <a href="http://peltiertech.com/Utility/BoxPlotUtility.html" rel="nofollow" title="Box and Whisker Chart Utility" >Box and Whisker Charts</a>, and <a href="http://peltiertech.com/Utility/ClusterStackUtility.html" rel="nofollow" title="Clustered-Stacked Column Chart Utility" >Clustered-Stacked Column Charts</a>. I&#8217;ve also released free utilities for <a href="http://peltiertech.com/WordPress/enhanced-export-chart-procedure/"title="Enhanced Export Chart Procedure" >Exporting Charts as Image Files</a>, <a href="http://peltiertech.com/WordPress/how-to-edit-series-formulas/"title="How to Edit Series Formulas" >Editing Series Formulas</a>, <a href="http://peltiertech.com/WordPress/error-bars-in-excel-2007/"title="Error Bars in Excel 2007" >Working with Error Bars in Excel 2007 (and 2003)</a>, and <a href="http://peltiertech.com/WordPress/using-colors-in-excel-charts/"class="simple_alink" title="Using Colors in Excel Charts" >Managing Color Palettes in Excel 2003 Charts</a>. There are a handful of others as well, which are listed under &#8220;Utilities&#8221; on the <a href="http://peltiertech.com/Excel/Charts/ChartIndex.html#U" rel="nofollow" title="The Letter &quot;U&quot; - Index - PTS Web Site" >Index of the PTS Web Site</a>.</p>
<p><span id="more-1447"></span>I&#8217;m working on some other utilities. One major one, which will probably start out as a bunch of separate parts, is an enhanced charting user interface for Classic Excel and Excel 2007. This was inspired by my supreme frustration trying to work with the <a href="http://peltiertech.com/WordPress/changes-to-charting-in-excel-2007/"title="Changes to Charting in Excel 2007" >Excel 2007 charting interface</a>, which was one step forward and twelve steps back. The overall plan takes about 80% of the Excel 2003 interface, 10% of the Excel 2007 interface, and 10% of stuff I can do better than either. The <strong>Format Error Bars</strong> utility above is part of this, and in the works are <strong>Format Axis</strong>, <strong>Format Series</strong>, and <strong>Format Chart Titles</strong> dialogs. These all take the bare necessities of formatting, without all the eye candy introduced in Excel 2007, thus reducing the necessary tabs back to one or two. I have an improved <strong>Select Source Data</strong> dialog, which uses two tabs as in Excel 2003: the <strong>Data Range</strong> tab is now nearly functional, while the <strong>Series Data</strong> tab is still problematic.</p>
<p>Eventually I plan a <strong>Chart Advisory Wizard</strong>, which will take the best of the familiar Excel 2003 Chart Wizard, throw out all the useless chart types (and you <em>know</em> what they are), and add a few other tricks. For example, explicitly stating which row(s) and column(s) are to be used for series names and category labels, and selecting a range of cells on which to position the chart. Both of these features were part of an ancient version of Excel, and were deprecated in Excel 97 or even earlier. I think it&#8217;s time to reprecate them, and invent new words while I&#8217;m at it. Since the word &#8220;Advisory&#8221; is in its title, this utility will include some guidelines to help users make useful charts. This might be through an expert system dialog, or through some kind of algorithm based on the selected data.</p>
<p>After reading dozens of complaints from people who are now switching to Excel 2007, I&#8217;ve started working on a <strong>Point Mover</strong> tool, which will bring back the ability to drag a point to change the underlying data. This is much harder than it seems, because if the cell with the data for a point contains a formula, you need to invoke Excel&#8217;s <a href="http://peltiertech.com/WordPress/goal-seek-optimization-approach-to-a-simple-physics-problem/"title="Goal Seek - Optimization Approach to a Simple Physics Problem" >Goal Seek</a> feature to adjust the precedent cell indicated by the user, and if this precedent cell also contains a formula, well, you have to trace the precedent chain back an indeterminate number of steps.</p>
<p>Another tool which I&#8217;ve adapted to several projects is a <a href="http://peltiertech.com/Excel/ExampleSolutions.html#zoomer" rel="nofollow" >Chart Zoomer</a> that allows the user to select a rectangular section of a chart, and somehow process the selection. I must say, this is one of the coolest things I&#8217;ve done in Excel, and it took many nights and weekends to get working. Among the actions that can be taken on the selected rectangle are adjusting the axis scales so this region fills up the plot area, and selecting the points within the rectangular regions for subsequent statistical analysis. The difficult part of this routine, well, now that the whole mouse selecting piece is in place, is making the utility flexible enough that users can do whatever they want once they&#8217;ve selected the rectangular region.</p>
<p>I hesitate to ask, since I&#8217;m already running dangerously low on &#8220;free time&#8221;, but are there any tricks I haven&#8217;t mentioned that would make a kick-ass utility?</p>



Bookmark and share this entry:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fexcel-utilities-in-the-works%2F&amp;title=Excel%20Utilities%20in%20the%20Works&amp;bodytext=As%20my%20regular%20readers%20know%2C%20I%27ve%20started%20building%20Excel%20charting%20utilities.%20It%27s%20challenging%20and%20rewarding%2C%20though%20I%20certainly%20won%27t%20retire%20to%20my%20own%20island%20in%20the%20Caribbean%20on%20these%20utilities%20alone.%20Over%20the%20past%20few%20months%20I%27ve%20released%20commercial%20" title="Digg"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fexcel-utilities-in-the-works%2F&amp;title=Excel%20Utilities%20in%20the%20Works&amp;notes=As%20my%20regular%20readers%20know%2C%20I%27ve%20started%20building%20Excel%20charting%20utilities.%20It%27s%20challenging%20and%20rewarding%2C%20though%20I%20certainly%20won%27t%20retire%20to%20my%20own%20island%20in%20the%20Caribbean%20on%20these%20utilities%20alone.%20Over%20the%20past%20few%20months%20I%27ve%20released%20commercial%20" title="del.icio.us"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fexcel-utilities-in-the-works%2F&amp;t=Excel%20Utilities%20in%20the%20Works" title="Facebook"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fexcel-utilities-in-the-works%2F" title="Technorati"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Excel%20Utilities%20in%20the%20Works%20-%20http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fexcel-utilities-in-the-works%2F" title="Twitter"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fexcel-utilities-in-the-works%2F&amp;title=Excel%20Utilities%20in%20the%20Works" title="StumbleUpon"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fexcel-utilities-in-the-works%2F&amp;title=Excel%20Utilities%20in%20the%20Works&amp;annotation=As%20my%20regular%20readers%20know%2C%20I%27ve%20started%20building%20Excel%20charting%20utilities.%20It%27s%20challenging%20and%20rewarding%2C%20though%20I%20certainly%20won%27t%20retire%20to%20my%20own%20island%20in%20the%20Caribbean%20on%20these%20utilities%20alone.%20Over%20the%20past%20few%20months%20I%27ve%20released%20commercial%20" title="Google Bookmarks"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fexcel-utilities-in-the-works%2F&amp;title=Excel%20Utilities%20in%20the%20Works" title="Reddit"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fexcel-utilities-in-the-works%2F&amp;t=Excel%20Utilities%20in%20the%20Works" title="MySpace"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://slashdot.org/bookmark.pl?title=Excel%20Utilities%20in%20the%20Works&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fexcel-utilities-in-the-works%2F" title="Slashdot"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fexcel-utilities-in-the-works%2F&amp;title=Excel%20Utilities%20in%20the%20Works&amp;source=PTS+Blog+PTS+Excel+Charts+and+Tutorials+Blog&amp;summary=As%20my%20regular%20readers%20know%2C%20I%27ve%20started%20building%20Excel%20charting%20utilities.%20It%27s%20challenging%20and%20rewarding%2C%20though%20I%20certainly%20won%27t%20retire%20to%20my%20own%20island%20in%20the%20Caribbean%20on%20these%20utilities%20alone.%20Over%20the%20past%20few%20months%20I%27ve%20released%20commercial%20" title="LinkedIn"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fexcel-utilities-in-the-works%2F&amp;submitHeadline=Excel%20Utilities%20in%20the%20Works&amp;submitSummary=As%20my%20regular%20readers%20know%2C%20I%27ve%20started%20building%20Excel%20charting%20utilities.%20It%27s%20challenging%20and%20rewarding%2C%20though%20I%20certainly%20won%27t%20retire%20to%20my%20own%20island%20in%20the%20Caribbean%20on%20these%20utilities%20alone.%20Over%20the%20past%20few%20months%20I%27ve%20released%20commercial%20&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://peltiertech.com/WordPress/excel-utilities-in-the-works/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
	</channel>
</rss>
