<?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>Peltier Tech Blog &#187; Dynamic Charts</title>
	<atom:link href="http://peltiertech.com/WordPress/category/dynamic-charts/feed/" rel="self" type="application/rss+xml" />
	<link>http://peltiertech.com/WordPress</link>
	<description>Peltier Tech Excel Charts and Programming Blog</description>
	<lastBuildDate>Mon, 15 Mar 2010 07:00:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Dynamic Chart with Multiple Series</title>
		<link>http://peltiertech.com/WordPress/dynamic-chart-with-multiple-series/</link>
		<comments>http://peltiertech.com/WordPress/dynamic-chart-with-multiple-series/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 20:04:55 +0000</pubDate>
		<dc:creator>Jon Peltier</dc:creator>
				<category><![CDATA[Dynamic Charts]]></category>

		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=2408</guid>
		<description><![CDATA[On my web site and blog, I have over a dozen pages that talk about dynamic charts. A partial list of these articles is provided at the end of this post.
I was asked to expand on one of my examples, specifically to show a dynamic chart with multiple dynamic series.
I made up the following data [...]]]></description>
			<content:encoded><![CDATA[<p>On my web site and blog, I have over a dozen pages that talk about dynamic charts. A partial list of these articles is provided at the end of this post.</p>
<p>I was asked to expand on one of my examples, specifically to show a dynamic chart with multiple dynamic series.</p>
<p>I made up the following data set:</p>
<p align="center"><img src="http://peltiertech.com/images/2009-09/MultiDynoData1.png" alt="dynamic data set" /></p>
<p><span id="more-2408"></span>I created the following chart, and when the first series was selected, the SERIES formula showed the cell addresses of the ranges defining its data.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-09/MultiDynoSeriesFormula1.png" alt="dynamic data set" /></p>
<p>I defined the following dynamic names:</p>
<p align="center"><img src="http://peltiertech.com/images/2009-09/MultiDynoNames.png" alt="dynamic names" /></p>
<p>The OFFSET formula defining XLabels basically says, starting with cell A1, move down one cell and right zero cells, and give us the range which is as tall as the number of labels, given by the COUNTA function, and as wide as 1 cell. The other OFFSET formulas merely say, give us the range 1, 2, 3, or 4 columns to the right of XLabels. This is a shortcut that assures all dynamic ranges are the same size.</p>
<p>To link the series to the dynamic ranges, all that is required is to replace the static cell references in the SERIES formulas with the names defined above. Here is the first SERIES formula when the cell addresses have been replaced by the names, before pressing Enter.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-09/MultiDynoSeriesFormula2.png" alt="dynamic data set" /></p>
<p>Since the names were defined with the workbook as their scope, pressing Enter converted the references to workbook references, that is, referenced to MultipleDynamicChart.xls instead of Sheet1.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-09/MultiDynoSeriesFormula3.png" alt="dynamic data set" /></p>
<p>When data is added to the range&#8230;</p>
<p align="center"><img src="http://peltiertech.com/images/2009-09/MultiDynoData2.png" alt="dynamic data set" /></p>
<p>&#8230; the SERIES formula is not changed, but the ranges defined by the dynamic names does change, so the chart updates.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-09/MultiDynoSeriesFormula4.png" alt="dynamic data set" /></p>
<p>The workbook with this example can be downloaded as a zip file, <a href="http://peltiertech.com/images/2009-09/MultipleDynamicChart.zip" rel="nofollow" >MultipleDynamicChart.zip</a>.</p>
<p>Here is a partial list of my articles on dynamic charts.</p>
<ul style="margin-left: 18px;">
<li>On the PTS Blog
<ul style="margin-left: 30px;">
<li><a href="http://peltiertech.com/WordPress/dynamic-charts/"title="Dynamic Charts" >Dynamic Charts</a></li>
<li><a href="http://peltiertech.com/WordPress/dynamic-chart-using-pivot-table-and-range-names/"title="Dynamic Chart using Pivot Table and Range Names" >Dynamic Chart using Pivot Table and Range Names</a></li>
<li><a href="http://peltiertech.com/WordPress/dynamic-chart-using-pivot-table-and-vba/"title="Dynamic Chart using Pivot Table and VBA" >Dynamic Chart using Pivot Table and VBA</a></li>
<li><a href="http://peltiertech.com/WordPress/dynamic-ranges-to-find-and-plot-desired-columns/"title="Dynamic Ranges to Find and Plot Desired Columns" >Dynamic Ranges to Find and Plot Desired Columns</a></li>
<li><a href="http://peltiertech.com/WordPress/split-data-range-into-multiple-chart-series-without-vba/"title="Split Data Range into Multiple Chart Series without VBA" >Split Data Range into Multiple Chart Series without VBA</a></li>
<li><a href="http://peltiertech.com/WordPress/vba-to-split-data-range-into-multiple-chart-series/"title="VBA to Split Data Range into Multiple Chart Series" >VBA to Split Data Range into Multiple Chart Series</a></li>
<li><a href="http://peltiertech.com/WordPress/dynamic-chart-source-data/"title="Dynamic Chart Source Data" >Dynamic Chart Source Data (VBA)</a></li>
<li><a href="http://peltiertech.com/WordPress/display-one-chart-dynamically-and-interactively/"title="Display One Chart Dynamically and Interactively" >Display One Chart Dynamically and Interactively</a></li>
</ul>
</li>
<li>On the Peltier Tech web site
<ul style="margin-left: 30px;">
<li><a href="http://peltiertech.com/Excel/Charts/Dynamics.html" rel="nofollow" >Dynamic and Interactive Charts (an overview)</a></li>
<li><a href="http://peltiertech.com/Excel/Charts/DynamicColumnChart1.html" rel="nofollow" >Dynamic Chart</a></li>
<li><a href="http://peltiertech.com/Excel/Charts/DynamicCharts.html" rel="nofollow" >Another Dynamic Chart</a></li>
<li><a href="http://peltiertech.com/Excel/Charts/DynamicLast12.html" rel="nofollow" >Chart the Last 12 Months</a></li>
<li><a href="http://peltiertech.com/Excel/ChartsHowTo/DynamicNormalized.html" rel="nofollow" >Charting Dynamic Normalized Ranges</a></li>
</ul>
</li>
<li>Published in TechTrax ezine
<ul style="margin-left: 30px;">
<li><a href="http://pubs.logicalexpressions.com/Pub0009/LPMArticle.asp?ID=246" rel="nofollow" >Dynamic Charting By Dates</a></li>
</ul>
</li>
</ul>
<p><br class="spacer_" /></p>
<p>Peltier Technical Services, Inc., Copyright © 2010.<br /> <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 /> <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://twitter.com/home?status=Dynamic%20Chart%20with%20Multiple%20Series%20-%20http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdynamic-chart-with-multiple-series%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://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdynamic-chart-with-multiple-series%2F&amp;title=Dynamic%20Chart%20with%20Multiple%20Series&amp;bodytext=On%20my%20web%20site%20and%20blog%2C%20I%20have%20over%20a%20dozen%20pages%20that%20talk%20about%20dynamic%20charts.%20A%20partial%20list%20of%20these%20articles%20is%20provided%20at%20the%20end%20of%20this%20post.%0D%0A%0D%0AI%20was%20asked%20to%20expand%20on%20one%20of%20my%20examples%2C%20specifically%20to%20show%20a%20dynamic%20chart%20with%20multipl" 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://www.facebook.com/share.php?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdynamic-chart-with-multiple-series%2F&amp;t=Dynamic%20Chart%20with%20Multiple%20Series" 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://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdynamic-chart-with-multiple-series%2F&amp;title=Dynamic%20Chart%20with%20Multiple%20Series&amp;source=Peltier+Tech+Blog+Peltier+Tech+Excel+Charts+and+Programming+Blog&amp;summary=On%20my%20web%20site%20and%20blog%2C%20I%20have%20over%20a%20dozen%20pages%20that%20talk%20about%20dynamic%20charts.%20A%20partial%20list%20of%20these%20articles%20is%20provided%20at%20the%20end%20of%20this%20post.%0D%0A%0D%0AI%20was%20asked%20to%20expand%20on%20one%20of%20my%20examples%2C%20specifically%20to%20show%20a%20dynamic%20chart%20with%20multipl" 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://delicious.com/post?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdynamic-chart-with-multiple-series%2F&amp;title=Dynamic%20Chart%20with%20Multiple%20Series&amp;notes=On%20my%20web%20site%20and%20blog%2C%20I%20have%20over%20a%20dozen%20pages%20that%20talk%20about%20dynamic%20charts.%20A%20partial%20list%20of%20these%20articles%20is%20provided%20at%20the%20end%20of%20this%20post.%0D%0A%0D%0AI%20was%20asked%20to%20expand%20on%20one%20of%20my%20examples%2C%20specifically%20to%20show%20a%20dynamic%20chart%20with%20multipl" 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://technorati.com/faves?add=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdynamic-chart-with-multiple-series%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://www.stumbleupon.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdynamic-chart-with-multiple-series%2F&amp;title=Dynamic%20Chart%20with%20Multiple%20Series" 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%2Fdynamic-chart-with-multiple-series%2F&amp;title=Dynamic%20Chart%20with%20Multiple%20Series&amp;annotation=On%20my%20web%20site%20and%20blog%2C%20I%20have%20over%20a%20dozen%20pages%20that%20talk%20about%20dynamic%20charts.%20A%20partial%20list%20of%20these%20articles%20is%20provided%20at%20the%20end%20of%20this%20post.%0D%0A%0D%0AI%20was%20asked%20to%20expand%20on%20one%20of%20my%20examples%2C%20specifically%20to%20show%20a%20dynamic%20chart%20with%20multipl" 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%2Fdynamic-chart-with-multiple-series%2F&amp;title=Dynamic%20Chart%20with%20Multiple%20Series" 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%2Fdynamic-chart-with-multiple-series%2F&amp;t=Dynamic%20Chart%20with%20Multiple%20Series" 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=Dynamic%20Chart%20with%20Multiple%20Series&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdynamic-chart-with-multiple-series%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://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdynamic-chart-with-multiple-series%2F&amp;submitHeadline=Dynamic%20Chart%20with%20Multiple%20Series&amp;submitSummary=On%20my%20web%20site%20and%20blog%2C%20I%20have%20over%20a%20dozen%20pages%20that%20talk%20about%20dynamic%20charts.%20A%20partial%20list%20of%20these%20articles%20is%20provided%20at%20the%20end%20of%20this%20post.%0D%0A%0D%0AI%20was%20asked%20to%20expand%20on%20one%20of%20my%20examples%2C%20specifically%20to%20show%20a%20dynamic%20chart%20with%20multipl&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>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdynamic-chart-with-multiple-series%2F&amp;t=Dynamic%20Chart%20with%20Multiple%20Series&amp;s=On%20my%20web%20site%20and%20blog%2C%20I%20have%20over%20a%20dozen%20pages%20that%20talk%20about%20dynamic%20charts.%20A%20partial%20list%20of%20these%20articles%20is%20provided%20at%20the%20end%20of%20this%20post.%0D%0A%0D%0AI%20was%20asked%20to%20expand%20on%20one%20of%20my%20examples%2C%20specifically%20to%20show%20a%20dynamic%20chart%20with%20multipl" title="Tumblr"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://peltiertech.com/WordPress/dynamic-chart-with-multiple-series/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Dynamic Chart Review</title>
		<link>http://peltiertech.com/WordPress/dynamic-chart-review/</link>
		<comments>http://peltiertech.com/WordPress/dynamic-chart-review/#comments</comments>
		<pubDate>Tue, 05 May 2009 09:30:17 +0000</pubDate>
		<dc:creator>Jon Peltier</dc:creator>
				<category><![CDATA[Dynamic Charts]]></category>

		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1872</guid>
		<description><![CDATA[My colleague and fellow MVP Debra Dalgleish shows a dynamic chart approach that lets you Select Excel Chart Dates From a Drop Down List.

Debra has provided her usual comprehensive step-by-step instructions and an example workbook you can download. Her example was done in Excel 2007, but it works as well in previous versions.
Debra contributed the [...]]]></description>
			<content:encoded><![CDATA[<p>My colleague and fellow MVP Debra Dalgleish shows a dynamic chart approach that lets you <a href="http://blog.contextures.com/archives/2009/05/03/select-excel-chart-dates-from-a-drop-down-list/" rel="nofollow" title="Select Excel Chart Dates From a Drop Down List" >Select Excel Chart Dates From a Drop Down List</a>.</p>
<p align="center"><a href="http://blog.contextures.com/archives/2009/05/03/select-excel-chart-dates-from-a-drop-down-list/" rel="nofollow" title="Select Excel Chart Dates From a Drop Down List" ><img src="http://peltiertech.com/images/2009-05/dsdDynoChartDropdown.png" border="0" alt="Select Excel Chart Dates From a Drop Down List" /></a></p>
<p>Debra has provided her usual comprehensive step-by-step instructions and an example workbook you can download. Her example was done in Excel 2007, but it works as well in previous versions.</p>
<p><span id="more-1872"></span>Debra contributed the first <a href="http://peltiertech.com/Excel/Charts/DynamicColumnChart1.html" rel="nofollow" title="Dynamic Column Chart" >Dynamic Chart</a> example on my fledgling web site, back when it was still just a hobby on GeoCities.</p>
<p>Here are more dynamic chart tutorials I&#8217;ve written:</p>
<ul style="margin-left: 18px;">
<li>On the PTS Blog
<ul style="margin-left: 30px;">
<li><a href="http://peltiertech.com/WordPress/dynamic-charts/"title="Dynamic Charts" >Dynamic Charts</a></li>
<li><a href="http://peltiertech.com/WordPress/dynamic-chart-using-pivot-table-and-range-names/"title="Dynamic Chart using Pivot Table and Range Names" >Dynamic Chart using Pivot Table and Range Names</a></li>
<li><a href="http://peltiertech.com/WordPress/dynamic-chart-using-pivot-table-and-vba/"title="Dynamic Chart using Pivot Table and VBA" >Dynamic Chart using Pivot Table and VBA</a></li>
<li><a href="http://peltiertech.com/WordPress/dynamic-ranges-to-find-and-plot-desired-columns/"title="Dynamic Ranges to Find and Plot Desired Columns" >Dynamic Ranges to Find and Plot Desired Columns</a></li>
<li><a href="http://peltiertech.com/WordPress/split-data-range-into-multiple-chart-series-without-vba/"title="Split Data Range into Multiple Chart Series without VBA" >Split Data Range into Multiple Chart Series without VBA</a></li>
<li><a href="http://peltiertech.com/WordPress/vba-to-split-data-range-into-multiple-chart-series/"title="VBA to Split Data Range into Multiple Chart Series" >VBA to Split Data Range into Multiple Chart Series</a></li>
<li><a href="http://peltiertech.com/WordPress/dynamic-chart-source-data/"title="Dynamic Chart Source Data" >Dynamic Chart Source Data (VBA)</a></li>
</ul>
</li>
<li>On the Peltier Tech web site
<ul style="margin-left: 30px;">
<li><a href="http://peltiertech.com/Excel/Charts/Dynamics.html" rel="nofollow" >Dynamic and Interactive Charts (an overview)</a></li>
<li><a href="http://peltiertech.com/Excel/Charts/DynamicCharts.html" rel="nofollow" >Another Dynamic Chart</a></li>
<li><a href="http://peltiertech.com/Excel/Charts/DynamicLast12.html" rel="nofollow" >Chart the Last 12 Months</a></li>
<li><a href="http://peltiertech.com/Excel/ChartsHowTo/DynamicNormalized.html" rel="nofollow" >Charting Dynamic Normalized Ranges</a></li>
</ul>
</li>
<li>Published in TechTrax ezine
<ul style="margin-left: 30px;">
<li><a href="http://pubs.logicalexpressions.com/Pub0009/LPMArticle.asp?ID=246" rel="nofollow" >Dynamic Charting By Dates</a></li>
</ul>
</li>
</ul>
<p><br class="spacer_" /></p>
<p>Peltier Technical Services, Inc., Copyright © 2010.<br /> <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 /> <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://twitter.com/home?status=Dynamic%20Chart%20Review%20-%20http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdynamic-chart-review%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://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdynamic-chart-review%2F&amp;title=Dynamic%20Chart%20Review&amp;bodytext=My%20colleague%20and%20fellow%20MVP%20Debra%20Dalgleish%20shows%20a%20dynamic%20chart%20approach%20that%20lets%20you%20Select%20Excel%20Chart%20Dates%20From%20a%20Drop%20Down%20List.%0D%0A%0D%0A%0D%0A%0D%0ADebra%20has%20provided%20her%20usual%20comprehensive%20step-by-step%20instructions%20and%20an%20example%20workbook%20you%20can%20downl" 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://www.facebook.com/share.php?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdynamic-chart-review%2F&amp;t=Dynamic%20Chart%20Review" 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://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdynamic-chart-review%2F&amp;title=Dynamic%20Chart%20Review&amp;source=Peltier+Tech+Blog+Peltier+Tech+Excel+Charts+and+Programming+Blog&amp;summary=My%20colleague%20and%20fellow%20MVP%20Debra%20Dalgleish%20shows%20a%20dynamic%20chart%20approach%20that%20lets%20you%20Select%20Excel%20Chart%20Dates%20From%20a%20Drop%20Down%20List.%0D%0A%0D%0A%0D%0A%0D%0ADebra%20has%20provided%20her%20usual%20comprehensive%20step-by-step%20instructions%20and%20an%20example%20workbook%20you%20can%20downl" 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://delicious.com/post?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdynamic-chart-review%2F&amp;title=Dynamic%20Chart%20Review&amp;notes=My%20colleague%20and%20fellow%20MVP%20Debra%20Dalgleish%20shows%20a%20dynamic%20chart%20approach%20that%20lets%20you%20Select%20Excel%20Chart%20Dates%20From%20a%20Drop%20Down%20List.%0D%0A%0D%0A%0D%0A%0D%0ADebra%20has%20provided%20her%20usual%20comprehensive%20step-by-step%20instructions%20and%20an%20example%20workbook%20you%20can%20downl" 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://technorati.com/faves?add=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdynamic-chart-review%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://www.stumbleupon.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdynamic-chart-review%2F&amp;title=Dynamic%20Chart%20Review" 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%2Fdynamic-chart-review%2F&amp;title=Dynamic%20Chart%20Review&amp;annotation=My%20colleague%20and%20fellow%20MVP%20Debra%20Dalgleish%20shows%20a%20dynamic%20chart%20approach%20that%20lets%20you%20Select%20Excel%20Chart%20Dates%20From%20a%20Drop%20Down%20List.%0D%0A%0D%0A%0D%0A%0D%0ADebra%20has%20provided%20her%20usual%20comprehensive%20step-by-step%20instructions%20and%20an%20example%20workbook%20you%20can%20downl" 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%2Fdynamic-chart-review%2F&amp;title=Dynamic%20Chart%20Review" 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%2Fdynamic-chart-review%2F&amp;t=Dynamic%20Chart%20Review" 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=Dynamic%20Chart%20Review&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdynamic-chart-review%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://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdynamic-chart-review%2F&amp;submitHeadline=Dynamic%20Chart%20Review&amp;submitSummary=My%20colleague%20and%20fellow%20MVP%20Debra%20Dalgleish%20shows%20a%20dynamic%20chart%20approach%20that%20lets%20you%20Select%20Excel%20Chart%20Dates%20From%20a%20Drop%20Down%20List.%0D%0A%0D%0A%0D%0A%0D%0ADebra%20has%20provided%20her%20usual%20comprehensive%20step-by-step%20instructions%20and%20an%20example%20workbook%20you%20can%20downl&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>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdynamic-chart-review%2F&amp;t=Dynamic%20Chart%20Review&amp;s=My%20colleague%20and%20fellow%20MVP%20Debra%20Dalgleish%20shows%20a%20dynamic%20chart%20approach%20that%20lets%20you%20Select%20Excel%20Chart%20Dates%20From%20a%20Drop%20Down%20List.%0D%0A%0D%0A%0D%0A%0D%0ADebra%20has%20provided%20her%20usual%20comprehensive%20step-by-step%20instructions%20and%20an%20example%20workbook%20you%20can%20downl" title="Tumblr"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://peltiertech.com/WordPress/dynamic-chart-review/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Interactive Charts with Checkboxes and Formulas</title>
		<link>http://peltiertech.com/WordPress/interactive-charts-with-checkboxes-and-formulas/</link>
		<comments>http://peltiertech.com/WordPress/interactive-charts-with-checkboxes-and-formulas/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 10:00:57 +0000</pubDate>
		<dc:creator>Jon Peltier</dc:creator>
				<category><![CDATA[Dynamic Charts]]></category>
		<category><![CDATA[Interactive]]></category>

		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1726</guid>
		<description><![CDATA[An interactive dashboard by definition includes mechanisms for users to control aspects of the display. There are many ways to accomplish this. In Interactive Charting by Combo Box or Checkbox I wrote about using checkboxes to do this. That used a very simple example, which I will explore further in this article.
There are a couple of [...]]]></description>
			<content:encoded><![CDATA[<p>An interactive dashboard by definition includes mechanisms for users to control aspects of the display. There are many ways to accomplish this. In <a href="http://peltiertech.com/Excel/Charts/ChartByControl.html" rel="nofollow" title="Interactive Charting by Combo Box or Checkbox | PTS Charts" >Interactive Charting by Combo Box or Checkbox</a> I wrote about using checkboxes to do this. That used a very simple example, which I will explore further in this article.</p>
<p>There are a couple of ways to achieve this interactive control. There is an easy method that relies on worksheet formulas to alter the contents of the source data range of each series, and there is a more involved technique that uses VBA to programmatically adjust the chart&#8217;s source data. This post will describe the approach that uses worksheet formulas.</p>
<p><strong>Checkboxes and Worksheet Formulas</strong></p>
<p>Start with a column chart that includes all of the series you will allow the user to select from (A, B, and C in this example). Add a checkbox from the Forms toolbar for each series.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-03/DynoFmlaCol01.png" alt="" /></p>
<p><span id="more-1726"></span>This works as well for a line chart, though the formulas have to be different for line and column charts.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-03/DynoFmlaLine01.png" alt="" /></p>
<p>The data range is shown below. The original source data is in J3:M8, and the three checkboxes link to the three cells in K1:M1.</p>
<p>There are two calculated ranges below the original data range. The category labels have simply been copied from the original range, but the other data is linked using worksheet formulas.</p>
<p>For the first calculated range, select K10:M15 so K10 is the active cell, enter</p>
<pre class="vbasmall">=IF(K$1,K3,"")
 </pre>
<p>then hold CTRL while pressing ENTER to fill the formula into the entire selected range.</p>
<p>For the second calculated range,  select K17:M17 so K17 is the active cell, enter</p>
<pre class="vbasmall">=IF(K$1,K3,"")
 </pre>
<p>then hold CTRL while pressing ENTER to fill the formula into the entire selected range. Then  select K18:M22 so K18 is the active cell, enter</p>
<pre class="vbasmall">=IF(K$1,K4,NA())
 </pre>
<p>and again hold CTRL while pressing ENTER to fill the formula into the entire selected range.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-03/DynoFmlaData01.png" alt="" /></p>
<p>If the Series B checkbox is unchecked, L1 is FALSE, so L10:L15 appear blank, L17 also appears blank, and L18:L22 contain #N/A.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-03/DynoFmlaData02.png" alt="" /></p>
<p>The source data range for the column chart has been changed from J3:M8 to J10:M15. The data for Series B appears blank due to the &#8220;&#8221; in the formulas, which Excel treats as zero. The bars for Series B have a height of zero, so they don&#8217;t appear, and the legend entry for Series B is &#8220;&#8221;, so it doesn&#8217;t appear.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-03/DynoFmlaCol02a.png" alt="" /></p>
<p>There is still a gap between the bars for Series A and Series C where Series B fits. There also is still a legend key for Series B, which is the unlabeled orange square between the green and blue squares. The legend can be hidden, but then another means is needed to identify the series in the chart.</p>
<p>We don&#8217;e want to use &#8220;blanks&#8221; in the source data for the line chart. Since the &#8220;&#8221; are interpreted as zero values, the line and markers for Series B lies along the horizontal axis, where Y=0. The legend entry for Series B displays no label, but the legend key still appears (the red bos and line).</p>
<p align="center"><img src="http://peltiertech.com/images/2009-03/DynoFmlaLine02a.png" alt="" /></p>
<p>For a line chart, use the range J17:J22 as the source data range. This uses #N/A instead of &#8220;&#8221; to indicate undisplayed values, so the line and markers for Series B don&#8217;t even appear in the chart. We still have that pesky unlabeled legend key, though.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-03/DynoFmlaLine02b.png" alt="" /></p>
<p>It would be nice to use the same data range for both line and column charts, but the #N/A error does not preclude plotting a point in a column chart. The value is zero as in a line chart, but if you put value labels on the points, the result is a label that says &#8220;#N/A&#8221;. There is no fancy trick using number formats to hide the error.<br class="spacer_" /></p>
<p align="center"><img src="http://peltiertech.com/images/2009-03/DynoFmlaCol02c.png" alt="" /></p>
<p>Using the range with apparent blanks results in labels of &#8220;0&#8243; at points corresponding to apparent blanks.<br class="spacer_" /></p>
<p align="center"><img src="http://peltiertech.com/images/2009-03/DynoFmlaCol02d.png" alt="" /></p>
<p>Using a custom number format of &#8220;0;;;&#8221;, we can suppress the display of any label except positive numbers (and errors).<br class="spacer_" /></p>
<p align="center"><img src="http://peltiertech.com/images/2009-03/DynoFmlaCol02e.png" alt="" /></p>
<p>What happens if the user gets excited and unchecks all of the boxes? The data ranges respond as expected:<br class="spacer_" /></p>
<p align="center"><img src="http://peltiertech.com/images/2009-03/DynoFmlaData03.png" alt="" /></p>
<p>And the column chart and line chart both show no data, with unlabeled legends.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-03/DynoFmlaCol03.png" alt="" /><br />
 <img src="http://peltiertech.com/images/2009-03/DynoFmlaLine03.png" alt="" /></p>
<p><a href="http://peltiertech.com/images/2009-03/CheckboxAndFormula.zip" rel="nofollow" title="Zipped workbook chowing checkbox and formula approach to interactive charts" >CheckboxAndFormula.zip</a> is a zipped workbook which you can download to illustrate this technique.</p>
<p><strong>Checkboxes and VBA</strong></p>
<p>In the next article, I will show how to use VBA in conjunction with the checkboxes to control a column or line chart with a single worksheet range and no formulas, while avoiding gaps for missing columns in the column chart and also avoiding  unlabeled legend entries.</p>
<p>Peltier Technical Services, Inc., Copyright © 2010.<br /> <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 /> <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://twitter.com/home?status=Interactive%20Charts%20with%20Checkboxes%20and%20Formulas%20-%20http%3A%2F%2Fpeltiertech.com%2FWordPress%2Finteractive-charts-with-checkboxes-and-formulas%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://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Finteractive-charts-with-checkboxes-and-formulas%2F&amp;title=Interactive%20Charts%20with%20Checkboxes%20and%20Formulas&amp;bodytext=An%20interactive%20dashboard%20by%20definition%20includes%20mechanisms%20for%20users%20to%20control%20aspects%20of%20the%20display.%20There%20are%20many%20ways%20to%20accomplish%20this.%20In%C2%A0Interactive%20Charting%20by%20Combo%20Box%20or%20Checkbox%20I%20wrote%20about%20using%20checkboxes%20to%20do%20this.%20That%20used%20a%20v" 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://www.facebook.com/share.php?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Finteractive-charts-with-checkboxes-and-formulas%2F&amp;t=Interactive%20Charts%20with%20Checkboxes%20and%20Formulas" 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://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Finteractive-charts-with-checkboxes-and-formulas%2F&amp;title=Interactive%20Charts%20with%20Checkboxes%20and%20Formulas&amp;source=Peltier+Tech+Blog+Peltier+Tech+Excel+Charts+and+Programming+Blog&amp;summary=An%20interactive%20dashboard%20by%20definition%20includes%20mechanisms%20for%20users%20to%20control%20aspects%20of%20the%20display.%20There%20are%20many%20ways%20to%20accomplish%20this.%20In%C2%A0Interactive%20Charting%20by%20Combo%20Box%20or%20Checkbox%20I%20wrote%20about%20using%20checkboxes%20to%20do%20this.%20That%20used%20a%20v" 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://delicious.com/post?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Finteractive-charts-with-checkboxes-and-formulas%2F&amp;title=Interactive%20Charts%20with%20Checkboxes%20and%20Formulas&amp;notes=An%20interactive%20dashboard%20by%20definition%20includes%20mechanisms%20for%20users%20to%20control%20aspects%20of%20the%20display.%20There%20are%20many%20ways%20to%20accomplish%20this.%20In%C2%A0Interactive%20Charting%20by%20Combo%20Box%20or%20Checkbox%20I%20wrote%20about%20using%20checkboxes%20to%20do%20this.%20That%20used%20a%20v" 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://technorati.com/faves?add=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Finteractive-charts-with-checkboxes-and-formulas%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://www.stumbleupon.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Finteractive-charts-with-checkboxes-and-formulas%2F&amp;title=Interactive%20Charts%20with%20Checkboxes%20and%20Formulas" 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%2Finteractive-charts-with-checkboxes-and-formulas%2F&amp;title=Interactive%20Charts%20with%20Checkboxes%20and%20Formulas&amp;annotation=An%20interactive%20dashboard%20by%20definition%20includes%20mechanisms%20for%20users%20to%20control%20aspects%20of%20the%20display.%20There%20are%20many%20ways%20to%20accomplish%20this.%20In%C2%A0Interactive%20Charting%20by%20Combo%20Box%20or%20Checkbox%20I%20wrote%20about%20using%20checkboxes%20to%20do%20this.%20That%20used%20a%20v" 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%2Finteractive-charts-with-checkboxes-and-formulas%2F&amp;title=Interactive%20Charts%20with%20Checkboxes%20and%20Formulas" 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%2Finteractive-charts-with-checkboxes-and-formulas%2F&amp;t=Interactive%20Charts%20with%20Checkboxes%20and%20Formulas" 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=Interactive%20Charts%20with%20Checkboxes%20and%20Formulas&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Finteractive-charts-with-checkboxes-and-formulas%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://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Finteractive-charts-with-checkboxes-and-formulas%2F&amp;submitHeadline=Interactive%20Charts%20with%20Checkboxes%20and%20Formulas&amp;submitSummary=An%20interactive%20dashboard%20by%20definition%20includes%20mechanisms%20for%20users%20to%20control%20aspects%20of%20the%20display.%20There%20are%20many%20ways%20to%20accomplish%20this.%20In%C2%A0Interactive%20Charting%20by%20Combo%20Box%20or%20Checkbox%20I%20wrote%20about%20using%20checkboxes%20to%20do%20this.%20That%20used%20a%20v&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>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Finteractive-charts-with-checkboxes-and-formulas%2F&amp;t=Interactive%20Charts%20with%20Checkboxes%20and%20Formulas&amp;s=An%20interactive%20dashboard%20by%20definition%20includes%20mechanisms%20for%20users%20to%20control%20aspects%20of%20the%20display.%20There%20are%20many%20ways%20to%20accomplish%20this.%20In%C2%A0Interactive%20Charting%20by%20Combo%20Box%20or%20Checkbox%20I%20wrote%20about%20using%20checkboxes%20to%20do%20this.%20That%20used%20a%20v" title="Tumblr"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://peltiertech.com/WordPress/interactive-charts-with-checkboxes-and-formulas/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Accordion Chart for Jorge</title>
		<link>http://peltiertech.com/WordPress/accordion-chart-for-jorge/</link>
		<comments>http://peltiertech.com/WordPress/accordion-chart-for-jorge/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 11:00:21 +0000</pubDate>
		<dc:creator>Jon Peltier</dc:creator>
				<category><![CDATA[Dynamic Charts]]></category>
		<category><![CDATA[chart events]]></category>
		<category><![CDATA[Interactive]]></category>

		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1532</guid>
		<description><![CDATA[Jorge Camoes wrote in Focus + Context (a Bar Chart Is Not a Skyscraper) that tall bar charts are a waste of space. If you plan to show everything (say, all fifty state names), you may as well just use a table. I&#8217;m not sure I completely agree, but part of his point is that [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Jorge Camoes</strong> wrote in <a href="http://charts.jorgecamoes.com/focus-context-bar-chart-skyscraper/" rel="nofollow" title="Jorge: Focus + Context (a Bar Chart Is Not a Skyscraper)" >Focus + Context (a Bar Chart Is Not a Skyscraper)</a> that tall bar charts are a waste of space. If you plan to show everything (say, all fifty state names), you may as well just use a table. I&#8217;m not sure I completely agree, but part of his point is that you shouldn&#8217;t overwhelm a reader with too much data all at once, because it will obscure the information.</p>
<p>Jorge used a data set Nathan provided for his <a href="http://forums.flowingdata.com/topic/visualize-this-poverty-rate-by-age-in-america-jan-14-to-jan-20" rel="nofollow" title="Flowing Data - Poverty Rate by Age in America" >Poverty in the US visualization project</a>. The chart Jorge dislikes looks like this:</p>
<p align="center"><span id="more-1532"></span><img src="http://peltiertech.com/images/2009-02/Original.png" alt="Big old ugly bar chart" /></p>
<p>It&#8217;s not really terrible, though I won&#8217;t deny it&#8217;s dull and maybe a bit cluttered. It&#8217;s more informative if less glossy than the infographic that was favored in Nathan&#8217;s challenge. But Jorge thinks that showing all of the state names was too much.</p>
<p>In some cases, an effective display might be to show two charts, the top five and the bottom five, and ignore the data in between.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-02/JorgeFiveWorst.png" alt="Five Worst Bars" /><br />
 <img src="http://peltiertech.com/images/2009-02/JorgeFiveBest.png" alt="Five Best Bars" /></p>
<p>But Jorge also wanted something interactive. So I put together a little dynamic chart that had all fifty bars but highlights the five closest to the current mouse location. As you move the mouse up and down along the chart, the highlighted region moves with the mouse.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-02/NoAccordion.png" alt="Interactive Bar Chart" /></p>
<p>Pretty cool, and the actual chart (see below for a download) is cooler than the static image above.</p>
<p>Well, Jorge is a pretty tough customer. He doesn&#8217;t just want to highlight the bars under the mouse. He wants to expand them, and shrink the unhighlighted bars. The effect is rather like an accordion. It was all I could do to keep up with Jorge&#8217;s requirements, but I cobbled together an example that I think he&#8217;ll be happy with.</p>
<p>Not only are a handful of bars under the mouse highlighed, but the highlighted bars are big and fat, while the unhighlighted bars are small and unobtrusive. And it&#8217;s completely interactive.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-02/Accordion.png" alt="Interactive Accordion Chart" /></p>
<p>Again, the dynamic chart in the sample download is way cooler than this screen shot. An advantage of the accordion chart is that the unhighlighted bars can be compressed, shrinking the chart without shrinking the highlighted region. This ability to fit the same dynamic information into a smaller space would make this a good candidate approach for an interactive dashboard.</p>
<p>You can download <a href="http://peltiertech.com/images/2009-02/Accordion.zip" rel="nofollow" title="Accordion Chart Zip File" >Accordion.zip</a>, which contains two Excel 2003 worbooks. <strong>NoAccordion1.xls</strong> is the plain version, with highlighting but no accordion-like expansion and contraction. <strong>Accordion1.xls</strong> is the deluxe version, where the highlighted region expands to grab your attention, while the unhighlighted bars shrink into the background. Open each workbook with macros enabled, then click on the chart to activate the animation.</p>
<p>The data is on the second worksheet of each workbook, along with a set of helper columns with the calculations that make the charts work. The code is unlocked, and you&#8217;ll be surprised how simple it is. Hardly a dozen lines in each workbook.</p>
<p><strong>Update &#8211; 12 February 2009</strong></p>
<p>Colin has noted that the accordion chart above would be better if all bars were labeled. I&#8217;ve adjusted the Accordion chart so the unhighlighted bars have lighter labels.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-02/Accordion2.png" alt="Improved Interactive Accordion Chart" /></p>
<p>I&#8217;ve added labels for unhighlighted bars in the NoAccordion chart. In response to Colin&#8217;s other suggestions, I&#8217;ve also changed the mouse actions so that mousing past the bars doesn&#8217;t move the highlighted region, but instead clicking on a bar or label toggles that bar between highlighted and unhighlighted status. In this chart I&#8217;ve highlighted the New England states.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-02/NoAccordion2.png" alt="Improved Interactive Bar Chart" /></p>
<p>These workbooks are Accordion2.xls and NoAccordion2.xls, found in  <a href="http://peltiertech.com/images/2009-02/Accordion2.zip" rel="nofollow" title="Accordion Chart Zip File" >Accordion2.zip</a>.</p>
<p><strong>Update 2 &#8211; 12 February 2009</strong></p>
<p>Dick Kusleika has made an adaptation to this chart that always displays the user&#8217;s home state. As he so astutely points out, &#8220;Does anyone really look at the top or bottom five <em>before</em> he finds his own state?&#8221; Read about it in <a href="http://www.dailydoseofexcel.com/archives/2009/02/12/ego-charts/" rel="nofollow" title="Daily Dose: Ego Charts" >Ego Charts</a>.</p>
<p>Peltier Technical Services, Inc., Copyright © 2010.<br /> <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 /> <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://twitter.com/home?status=Accordion%20Chart%20for%20Jorge%20-%20http%3A%2F%2Fpeltiertech.com%2FWordPress%2Faccordion-chart-for-jorge%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://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Faccordion-chart-for-jorge%2F&amp;title=Accordion%20Chart%20for%20Jorge&amp;bodytext=Jorge%20Camoes%20wrote%20in%20Focus%20%2B%20Context%20%28a%20Bar%20Chart%20Is%20Not%20a%20Skyscraper%29%20that%20tall%20bar%20charts%20are%20a%20waste%20of%20space.%20If%20you%20plan%20to%20show%20everything%20%28say%2C%20all%20fifty%20state%20names%29%2C%20you%20may%20as%20well%20just%20use%20a%20table.%20I%27m%20not%20sure%20I%20completely%20agree%2C%20but%20par" 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://www.facebook.com/share.php?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Faccordion-chart-for-jorge%2F&amp;t=Accordion%20Chart%20for%20Jorge" 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://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Faccordion-chart-for-jorge%2F&amp;title=Accordion%20Chart%20for%20Jorge&amp;source=Peltier+Tech+Blog+Peltier+Tech+Excel+Charts+and+Programming+Blog&amp;summary=Jorge%20Camoes%20wrote%20in%20Focus%20%2B%20Context%20%28a%20Bar%20Chart%20Is%20Not%20a%20Skyscraper%29%20that%20tall%20bar%20charts%20are%20a%20waste%20of%20space.%20If%20you%20plan%20to%20show%20everything%20%28say%2C%20all%20fifty%20state%20names%29%2C%20you%20may%20as%20well%20just%20use%20a%20table.%20I%27m%20not%20sure%20I%20completely%20agree%2C%20but%20par" 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://delicious.com/post?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Faccordion-chart-for-jorge%2F&amp;title=Accordion%20Chart%20for%20Jorge&amp;notes=Jorge%20Camoes%20wrote%20in%20Focus%20%2B%20Context%20%28a%20Bar%20Chart%20Is%20Not%20a%20Skyscraper%29%20that%20tall%20bar%20charts%20are%20a%20waste%20of%20space.%20If%20you%20plan%20to%20show%20everything%20%28say%2C%20all%20fifty%20state%20names%29%2C%20you%20may%20as%20well%20just%20use%20a%20table.%20I%27m%20not%20sure%20I%20completely%20agree%2C%20but%20par" 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://technorati.com/faves?add=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Faccordion-chart-for-jorge%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://www.stumbleupon.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Faccordion-chart-for-jorge%2F&amp;title=Accordion%20Chart%20for%20Jorge" 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%2Faccordion-chart-for-jorge%2F&amp;title=Accordion%20Chart%20for%20Jorge&amp;annotation=Jorge%20Camoes%20wrote%20in%20Focus%20%2B%20Context%20%28a%20Bar%20Chart%20Is%20Not%20a%20Skyscraper%29%20that%20tall%20bar%20charts%20are%20a%20waste%20of%20space.%20If%20you%20plan%20to%20show%20everything%20%28say%2C%20all%20fifty%20state%20names%29%2C%20you%20may%20as%20well%20just%20use%20a%20table.%20I%27m%20not%20sure%20I%20completely%20agree%2C%20but%20par" 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%2Faccordion-chart-for-jorge%2F&amp;title=Accordion%20Chart%20for%20Jorge" 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%2Faccordion-chart-for-jorge%2F&amp;t=Accordion%20Chart%20for%20Jorge" 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=Accordion%20Chart%20for%20Jorge&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Faccordion-chart-for-jorge%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://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Faccordion-chart-for-jorge%2F&amp;submitHeadline=Accordion%20Chart%20for%20Jorge&amp;submitSummary=Jorge%20Camoes%20wrote%20in%20Focus%20%2B%20Context%20%28a%20Bar%20Chart%20Is%20Not%20a%20Skyscraper%29%20that%20tall%20bar%20charts%20are%20a%20waste%20of%20space.%20If%20you%20plan%20to%20show%20everything%20%28say%2C%20all%20fifty%20state%20names%29%2C%20you%20may%20as%20well%20just%20use%20a%20table.%20I%27m%20not%20sure%20I%20completely%20agree%2C%20but%20par&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>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Faccordion-chart-for-jorge%2F&amp;t=Accordion%20Chart%20for%20Jorge&amp;s=Jorge%20Camoes%20wrote%20in%20Focus%20%2B%20Context%20%28a%20Bar%20Chart%20Is%20Not%20a%20Skyscraper%29%20that%20tall%20bar%20charts%20are%20a%20waste%20of%20space.%20If%20you%20plan%20to%20show%20everything%20%28say%2C%20all%20fifty%20state%20names%29%2C%20you%20may%20as%20well%20just%20use%20a%20table.%20I%27m%20not%20sure%20I%20completely%20agree%2C%20but%20par" title="Tumblr"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://peltiertech.com/WordPress/accordion-chart-for-jorge/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Gapminder For Excel II</title>
		<link>http://peltiertech.com/WordPress/gapminder-for-excel-ii/</link>
		<comments>http://peltiertech.com/WordPress/gapminder-for-excel-ii/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 11:00:14 +0000</pubDate>
		<dc:creator>Jon Peltier</dc:creator>
				<category><![CDATA[Dynamic Charts]]></category>
		<category><![CDATA[Animated Charts]]></category>
		<category><![CDATA[Gapminder]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1187</guid>
		<description><![CDATA[A few months ago in Gapminder for Excel I made a simplistic mockup of Hans Rosling&#8217;s Gapminder presentation Debunking third-world myths with the best stats you’ve ever seen in Excel. It was fairly simple, with a single bubble marching across a chart, interpolating between yearly data points as a simple timer-based VBA procedure incremented.
An astute [...]]]></description>
			<content:encoded><![CDATA[<p>A few months ago in <a href="http://peltiertech.com/WordPress/2008/08/11/gapminder-for-excel/"title="Gapminder for Excel" >Gapminder for Excel</a> I made a simplistic mockup of Hans Rosling&#8217;s Gapminder presentation <a href="http://www.ted.com/index.php/talks/hans_rosling_shows_the_best_stats_you_ve_ever_seen.html" rel="nofollow" title="Debunking third-world myths with the best stats you've ever seen" >Debunking third-world myths with the best stats you’ve ever seen</a> in Excel. It was fairly simple, with a single bubble marching across a chart, interpolating between yearly data points as a simple timer-based VBA procedure incremented.</p>
<p>An astute reader named Eric thought that the chart would be more effective if the moving bubble left a trail of breadcrumbs, as it were, the annual mileposts along the travels of the moving bubble. I took up the challenge, and it took less time to work up than it&#8217;s taking to write this post.</p>
<p align="center"><span id="more-1187"></span><img title="Gapminder for Excel chart with trailing breadcrumbs" src="http://peltiertech.com/images/2008-12/GapminderII.png" alt="Gapminder for Excel chart with trailing breadcrumbs" /></p>
<p>I modified the data somewhat, since it was made up anyway, so that the path traced by the moving bubble was more continuous. I also defined some names in the worksheet which contain the whole series of data from the first point up to the point where the moving bubble has reached.</p>
<p>Here is a summary of the names, if you&#8217;re playing along at home. The first three names were present in the first version of this chart, and were used by the VBA program in its interpolation routine. The next three names are the X and Y values and the Diameters for the bubbles. Finally, I&#8217;ve included the chart series formula for the new series.</p>
<pre class="vbasmall"><strong>Name          Refers To</strong>
FirstColumn    =Data!$B$12
LastColumn     =Data!$B$13
ControlColumn  =Data!$B$14
<span style="color: #993366;">AllYearsX      =OFFSET(Data!$A$3,0,1,1,GapminderExcel.xls!ControlColumn-1)</span>
<span style="color: #0000ff;">AllYearsY      =OFFSET(AllYearsX,1,0)</span>
<span style="color: #339966;">AllYearsD      =OFFSET(AllYearsX,2,0)</span>
Chart Series   =SERIES("All Years",<span style="color: #800080;">GapminderExcel.xls!AllYearsX</span>,
               <span style="color: #0000ff;">GapminderExcel.xls!AllYearsY</span>,1,<span style="color: #339966;">GapminderExcel.xls!AllYearsD</span>)
&nbsp;</pre>
<p>The workbook can be found in <a href="http://peltiertech.com/images/2008-12/GapminderII.zip" rel="nofollow" title="GapminderII.zip" >GapminderII.zip</a>.</p>
<p>Peltier Technical Services, Inc., Copyright © 2010.<br /> <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 /> <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://twitter.com/home?status=Gapminder%20For%20Excel%20II%20-%20http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fgapminder-for-excel-ii%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://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fgapminder-for-excel-ii%2F&amp;title=Gapminder%20For%20Excel%20II&amp;bodytext=A%20few%20months%20ago%20in%20Gapminder%20for%20Excel%20I%20made%20a%20simplistic%20mockup%20of%20Hans%20Rosling%27s%20Gapminder%20presentation%20Debunking%20third-world%20myths%20with%20the%20best%20stats%20you%E2%80%99ve%20ever%20seen%20in%20Excel.%20It%20was%20fairly%20simple%2C%20with%20a%20single%20bubble%20marching%20across%20a%20char" 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://www.facebook.com/share.php?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fgapminder-for-excel-ii%2F&amp;t=Gapminder%20For%20Excel%20II" 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://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fgapminder-for-excel-ii%2F&amp;title=Gapminder%20For%20Excel%20II&amp;source=Peltier+Tech+Blog+Peltier+Tech+Excel+Charts+and+Programming+Blog&amp;summary=A%20few%20months%20ago%20in%20Gapminder%20for%20Excel%20I%20made%20a%20simplistic%20mockup%20of%20Hans%20Rosling%27s%20Gapminder%20presentation%20Debunking%20third-world%20myths%20with%20the%20best%20stats%20you%E2%80%99ve%20ever%20seen%20in%20Excel.%20It%20was%20fairly%20simple%2C%20with%20a%20single%20bubble%20marching%20across%20a%20char" 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://delicious.com/post?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fgapminder-for-excel-ii%2F&amp;title=Gapminder%20For%20Excel%20II&amp;notes=A%20few%20months%20ago%20in%20Gapminder%20for%20Excel%20I%20made%20a%20simplistic%20mockup%20of%20Hans%20Rosling%27s%20Gapminder%20presentation%20Debunking%20third-world%20myths%20with%20the%20best%20stats%20you%E2%80%99ve%20ever%20seen%20in%20Excel.%20It%20was%20fairly%20simple%2C%20with%20a%20single%20bubble%20marching%20across%20a%20char" 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://technorati.com/faves?add=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fgapminder-for-excel-ii%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://www.stumbleupon.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fgapminder-for-excel-ii%2F&amp;title=Gapminder%20For%20Excel%20II" 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%2Fgapminder-for-excel-ii%2F&amp;title=Gapminder%20For%20Excel%20II&amp;annotation=A%20few%20months%20ago%20in%20Gapminder%20for%20Excel%20I%20made%20a%20simplistic%20mockup%20of%20Hans%20Rosling%27s%20Gapminder%20presentation%20Debunking%20third-world%20myths%20with%20the%20best%20stats%20you%E2%80%99ve%20ever%20seen%20in%20Excel.%20It%20was%20fairly%20simple%2C%20with%20a%20single%20bubble%20marching%20across%20a%20char" 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%2Fgapminder-for-excel-ii%2F&amp;title=Gapminder%20For%20Excel%20II" 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%2Fgapminder-for-excel-ii%2F&amp;t=Gapminder%20For%20Excel%20II" 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=Gapminder%20For%20Excel%20II&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fgapminder-for-excel-ii%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://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fgapminder-for-excel-ii%2F&amp;submitHeadline=Gapminder%20For%20Excel%20II&amp;submitSummary=A%20few%20months%20ago%20in%20Gapminder%20for%20Excel%20I%20made%20a%20simplistic%20mockup%20of%20Hans%20Rosling%27s%20Gapminder%20presentation%20Debunking%20third-world%20myths%20with%20the%20best%20stats%20you%E2%80%99ve%20ever%20seen%20in%20Excel.%20It%20was%20fairly%20simple%2C%20with%20a%20single%20bubble%20marching%20across%20a%20char&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>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fgapminder-for-excel-ii%2F&amp;t=Gapminder%20For%20Excel%20II&amp;s=A%20few%20months%20ago%20in%20Gapminder%20for%20Excel%20I%20made%20a%20simplistic%20mockup%20of%20Hans%20Rosling%27s%20Gapminder%20presentation%20Debunking%20third-world%20myths%20with%20the%20best%20stats%20you%E2%80%99ve%20ever%20seen%20in%20Excel.%20It%20was%20fairly%20simple%2C%20with%20a%20single%20bubble%20marching%20across%20a%20char" title="Tumblr"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://peltiertech.com/WordPress/gapminder-for-excel-ii/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Display One Chart Dynamically and Interactively</title>
		<link>http://peltiertech.com/WordPress/display-one-chart-dynamically-and-interactively/</link>
		<comments>http://peltiertech.com/WordPress/display-one-chart-dynamically-and-interactively/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 14:41:20 +0000</pubDate>
		<dc:creator>Jon Peltier</dc:creator>
				<category><![CDATA[Dynamic Charts]]></category>
		<category><![CDATA[Chandoo]]></category>
		<category><![CDATA[Interactive]]></category>

		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=816</guid>
		<description><![CDATA[Once again, I rely on Chandoo for inspiration for a charting tutorial. In Select and Show One Chart from Many he shows how to let a user choose which of several charts to show, in an interactive display. He uses data validation to enable the user to select from a finite list of charts, and [...]]]></description>
			<content:encoded><![CDATA[<p>Once again, I rely on <a href="http://chandoo.org/wp" rel="nofollow" title="Pointy Haired Dilbert" >Chandoo</a> for inspiration for a charting tutorial. In <a href="http://chandoo.org/wp/2008/11/05/select-show-one-chart-from-many/" rel="nofollow" title="How to Conditionally Show or Hide Charts" >Select and Show One Chart from Many</a> he shows how to let a user choose which of several charts to show, in an interactive display. He uses data validation to enable the user to select from a finite list of charts, and uses a little-known image linking trick in Excel to show the selected chart. Basically, selecting an item changes a dynamic range so it refers to the range beneath the selected chart, and the picture is linked to this dynamic range.</p>
<p align="center"><img title="Dynamic Final Report" src="http://peltiertech.com/WordPress/wp-content/img200811/FinalReport.png" alt="Dynamic Final Report" /></p>
<p>This linked-picture trick is related to Excel&#8217;s Camera tool, which means two things. First, it&#8217;s pretty cool. Second, using it more than a few times will consume resources and slow down the workbook&#8217;s response. If you are linking to one <em>picture</em> of many, this is the way to do it, but if you merely want to show different set of data in your chart, it&#8217;s more than you need. In this post I will show you an easy and resource-friendly way to achieve the same effects in your dynamic report.<span id="more-816"></span></p>
<h2 style="font-size: 13px; margin:0 0 18px;">The Report Layout</h2>
<p>I&#8217;ve set up my report as shown below. Cell F2 contains the selected quantity to be plotted, and I&#8217;ve named the cell &#8220;WhichChart&#8221;. The original data is in B17:E25, and a second data range linked to the first is in B28:E36. The borders around parts of the range B28:E36 show the chart source data range of the working chart, which I will discuss shortly.</p>
<p align="center"><img title="Dynamic Report Layout" src="http://peltiertech.com/WordPress/wp-content/img200811/ReportLayout.png" alt="Dynamic Report Layout" /></p>
<p>One or both of the data ranges can be moved to a different place on this sheet, or onto another sheet, so that the focus is on the chart itself.</p>
<h2 style="font-size: 13px; margin:0 0 18px;">Data Selection</h2>
<p>To make the selection of a chart more flexible, I changed the data validation list source of cell F2 (&#8220;WhichChart&#8221;) so it refers to the range C17:E17 rather than a hard-coded list (see the dialog below). This way, if I change one of the headers, I don&#8217;t need to update the data validation list.</p>
<p align="center"><img title="Dynamic Report Data Validation" src="http://peltiertech.com/WordPress/wp-content/img200811/DataValidationDialog.png" alt="Dynamic Report Data Validation" /></p>
<p>I generally prefer using a dropdown control or a listbox. A dropdown always shows the drop down arrow icon, so the user knows he can choose something even when the cell is not selected. A listbox shows all options without having to go to all the trouble of dropping down a list. But data validation is pretty easy to use, so it&#8217;s really a matter of choice.</p>
<h2 style="font-size: 13px; margin:0 0 18px;">The Dynamic Chart</h2>
<p>I then constructed a chart that contained all of Chandoo&#8217;s data and the formatting from Chandoo&#8217;s three charts. I used B18:B25 for the category (X-axis) labels, C17:E17 for the series names, and C18:E25 for the series Y data. To make the chart title dynamic, I selected the title, typed = in the formula bar, then selected the range C17:E17, and pressed Enter. The chart title then displayed the formula <tt class="tt">=Report!$C$17:$E$17</tt>. When multiple cells are selected like this, Excel concatenates the cell values, inserting a space between non-blank items.</p>
<p align="center"><img title="Dynamic Report Original Chart" src="http://peltiertech.com/WordPress/wp-content/img200811/MultiChart01.png" alt="Dynamic Report Original Chart" /></p>
<h2 style="font-size: 13px; margin:0 0 18px;">The Dynamic Data</h2>
<p>The second data range is linked to the original data, with a twist. It compares the column header to the selection in F2 and shows or hides the column as appropriate. I selected the range C28:E36 with C28 the active cell, entered this formula, then pressed Ctrl+Enter to enter the formula into the entire selected range:</p>
<pre class="vba">=IF(C$17=WhichChart,C17,"")
 </pre>
<p>This hides the headers and Y data for the non-selected column of data. I changed the source data of the chart so that B29:B36 (purple outline) is used for the category (X axis) labels, C28:E28 (green outine) for the series names, and C29:E36 (blue outline) for the series Y data. I also changed the title link formula to <tt class="tt">=Report!$C$28:$E$28</tt>. The outline colors correspond to the colors that Excel highlights these ranges when the chart&#8217;s plot area or chart area is selected. When Sales is selected, the data range looks like this (with only the Sales column displayed):</p>
<p align="center"><img title="Dynamic Report Data" src="http://peltiertech.com/WordPress/wp-content/img200811/MultiData01.png" alt="Dynamic Report Data" /></p>
<p>and the chart looks like this:</p>
<p align="center"><img title="Dynamic Report Intermediate Chart" src="http://peltiertech.com/WordPress/wp-content/img200811/MultiChart02.png" alt="Dynamic Report Intermediate Chart" /></p>
<h2 style="font-size: 13px; margin:0 0 18px;">Final Touches</h2>
<p>This isn&#8217;t quite perfect yet, but it&#8217;s easy to finish. First, apply a custom number format of <tt class="tt">0;;;</tt> to the data labels in the chart, so the zero values (corresponding to the blank cells) are not shown. Second, format any one of the series in the chart so that it has an overlap of 100, so that all columns overlap, and there is no horizontal space wasted for columns with no data. Here is the finished chart:</p>
<p align="center"><img title="Dynamic Final Report" src="http://peltiertech.com/WordPress/wp-content/img200811/FinalReport.png" alt="Dynamic Final Report" /></p>
<p>Download this <a href="http://peltiertech.com/WordPress/wp-content/img200811/select-chart-to-display-pts.zip"title="dynamic chart" >dynamic chart</a> (in a zipped workbook).</p>



Bookmark and share this entry:


	<a rel="nofollow"  href="http://twitter.com/home?status=Display%20One%20Chart%20Dynamically%20and%20Interactively%20-%20http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdisplay-one-chart-dynamically-and-interactively%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://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdisplay-one-chart-dynamically-and-interactively%2F&amp;title=Display%20One%20Chart%20Dynamically%20and%20Interactively&amp;bodytext=Once%20again%2C%20I%20rely%20on%20Chandoo%20for%20inspiration%20for%20a%20charting%20tutorial.%20In%20Select%20and%20Show%20One%20Chart%20from%20Many%20he%20shows%20how%20to%20let%20a%20user%20choose%20which%20of%20several%20charts%20to%20show%2C%20in%20an%20interactive%20display.%20He%20uses%20data%20validation%20to%20enable%20the%20user%20to%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://www.facebook.com/share.php?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdisplay-one-chart-dynamically-and-interactively%2F&amp;t=Display%20One%20Chart%20Dynamically%20and%20Interactively" 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://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdisplay-one-chart-dynamically-and-interactively%2F&amp;title=Display%20One%20Chart%20Dynamically%20and%20Interactively&amp;source=Peltier+Tech+Blog+Peltier+Tech+Excel+Charts+and+Programming+Blog&amp;summary=Once%20again%2C%20I%20rely%20on%20Chandoo%20for%20inspiration%20for%20a%20charting%20tutorial.%20In%20Select%20and%20Show%20One%20Chart%20from%20Many%20he%20shows%20how%20to%20let%20a%20user%20choose%20which%20of%20several%20charts%20to%20show%2C%20in%20an%20interactive%20display.%20He%20uses%20data%20validation%20to%20enable%20the%20user%20to%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://delicious.com/post?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdisplay-one-chart-dynamically-and-interactively%2F&amp;title=Display%20One%20Chart%20Dynamically%20and%20Interactively&amp;notes=Once%20again%2C%20I%20rely%20on%20Chandoo%20for%20inspiration%20for%20a%20charting%20tutorial.%20In%20Select%20and%20Show%20One%20Chart%20from%20Many%20he%20shows%20how%20to%20let%20a%20user%20choose%20which%20of%20several%20charts%20to%20show%2C%20in%20an%20interactive%20display.%20He%20uses%20data%20validation%20to%20enable%20the%20user%20to%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://technorati.com/faves?add=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdisplay-one-chart-dynamically-and-interactively%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://www.stumbleupon.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdisplay-one-chart-dynamically-and-interactively%2F&amp;title=Display%20One%20Chart%20Dynamically%20and%20Interactively" 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%2Fdisplay-one-chart-dynamically-and-interactively%2F&amp;title=Display%20One%20Chart%20Dynamically%20and%20Interactively&amp;annotation=Once%20again%2C%20I%20rely%20on%20Chandoo%20for%20inspiration%20for%20a%20charting%20tutorial.%20In%20Select%20and%20Show%20One%20Chart%20from%20Many%20he%20shows%20how%20to%20let%20a%20user%20choose%20which%20of%20several%20charts%20to%20show%2C%20in%20an%20interactive%20display.%20He%20uses%20data%20validation%20to%20enable%20the%20user%20to%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%2Fdisplay-one-chart-dynamically-and-interactively%2F&amp;title=Display%20One%20Chart%20Dynamically%20and%20Interactively" 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%2Fdisplay-one-chart-dynamically-and-interactively%2F&amp;t=Display%20One%20Chart%20Dynamically%20and%20Interactively" 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=Display%20One%20Chart%20Dynamically%20and%20Interactively&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdisplay-one-chart-dynamically-and-interactively%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://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdisplay-one-chart-dynamically-and-interactively%2F&amp;submitHeadline=Display%20One%20Chart%20Dynamically%20and%20Interactively&amp;submitSummary=Once%20again%2C%20I%20rely%20on%20Chandoo%20for%20inspiration%20for%20a%20charting%20tutorial.%20In%20Select%20and%20Show%20One%20Chart%20from%20Many%20he%20shows%20how%20to%20let%20a%20user%20choose%20which%20of%20several%20charts%20to%20show%2C%20in%20an%20interactive%20display.%20He%20uses%20data%20validation%20to%20enable%20the%20user%20to%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>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fdisplay-one-chart-dynamically-and-interactively%2F&amp;t=Display%20One%20Chart%20Dynamically%20and%20Interactively&amp;s=Once%20again%2C%20I%20rely%20on%20Chandoo%20for%20inspiration%20for%20a%20charting%20tutorial.%20In%20Select%20and%20Show%20One%20Chart%20from%20Many%20he%20shows%20how%20to%20let%20a%20user%20choose%20which%20of%20several%20charts%20to%20show%2C%20in%20an%20interactive%20display.%20He%20uses%20data%20validation%20to%20enable%20the%20user%20to%20" title="Tumblr"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://peltiertech.com/WordPress/display-one-chart-dynamically-and-interactively/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Ballistics Animation</title>
		<link>http://peltiertech.com/WordPress/ballistics-animation/</link>
		<comments>http://peltiertech.com/WordPress/ballistics-animation/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 02:23:36 +0000</pubDate>
		<dc:creator>Jon Peltier</dc:creator>
				<category><![CDATA[Dynamic Charts]]></category>
		<category><![CDATA[Animated Charts]]></category>
		<category><![CDATA[ballistics]]></category>
		<category><![CDATA[Educational]]></category>
		<category><![CDATA[Interactive]]></category>
		<category><![CDATA[Physics]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=353</guid>
		<description><![CDATA[I&#8217;ve done a handful of animations lately:

Gas Prices &#8211; Animated Bar Chart for Excel
Gas Prices &#8211; Animated Bar Chart for Excel 2
Gapminder for Excel
Rolling Wheel Animation

This example shows the position and path of a moving projectile which is launched at a given velocity and angle. The math is high school physics, with a little calculus [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve done a handful of animations lately:</p>
<ul style="margin-left : 24px">
<li><a href="http://peltiertech.com/WordPress/2008/08/08/gas-prices-animated-bar-chart-for-excel/"title="Gas Prices - Animated Bar Chart for Excel" >Gas Prices &#8211; Animated Bar Chart for Excel</a></li>
<li><a href="http://peltiertech.com/WordPress/2008/08/09/gas-prices-animated-bar-chart-for-excel-2/"title="Gas Prices - Animated Bar Chart for Excel 2" >Gas Prices &#8211; Animated Bar Chart for Excel 2</a></li>
<li><a href="http://peltiertech.com/WordPress/2008/08/11/gapminder-for-excel/"title="Gapminder for Excel" >Gapminder for Excel</a></li>
<li><a href="http://peltiertech.com/WordPress/2008/08/17/rolling-wheel-animation/"title="Rolling Wheel Animation" >Rolling Wheel Animation</a></li>
</ul>
<p>This example shows the position and path of a moving projectile which is launched at a given velocity and angle. The math is high school physics, with a little calculus and trig thrown in. If you want to see that, download the workbook (link below), or consult a textbook or a smart kid.</p>
<p>The workbook has a data entry area and my usual animation controls. When the angle and velocity are entered, a results table shows how long the projectile will be in flight, how long it will take to get to maximum altitude, and what altitude and distance the projectile will reach. Some assumptions were made to simplify the model, as in all physics problems. The ground is flat at sea level, and the effect of air resistance is neglected.</p>
<p align="center"><img title="Ballistics Animation Demo" src="http://peltiertech.com/WordPress/wp-content/img200808/Ballistics01.png" alt="Ballistics Animation Demo" /></p>
<p><span id="more-353"></span>Set the angle to 45° and the velocity to 100 m/s, and start the animation.</p>
<p align="center"><img title="Ballistics Animation Demo" src="http://peltiertech.com/WordPress/wp-content/img200808/Ballistics03a.png" alt="Ballistics Animation Demo" /><br />
 <img title="Ballistics Animation Demo" src="http://peltiertech.com/WordPress/wp-content/img200808/Ballistics04a.png" alt="Ballistics Animation Demo" /><br />
 <img title="Ballistics Animation Demo" src="http://peltiertech.com/WordPress/wp-content/img200808/Ballistics05a.png" alt="Ballistics Animation Demo" /><br />
 <img title="Ballistics Animation Demo" src="http://peltiertech.com/WordPress/wp-content/img200808/Ballistics06a.png" alt="Ballistics Animation Demo" /><br />
 <img title="Ballistics Animation Demo" src="http://peltiertech.com/WordPress/wp-content/img200808/Ballistics08a.png" alt="Ballistics Animation Demo" /></p>
<p>Here is the end of the animation for 30° and 7 m/s.</p>
<p align="center"><img title="Ballistics Animation Demo" src="http://peltiertech.com/WordPress/wp-content/img200808/Ballistics09a.png" alt="Ballistics Animation Demo" /></p>
<p>And this one is for 75° and 100 m/s</p>
<p align="center"><img title="Ballistics Animation Demo" src="http://peltiertech.com/WordPress/wp-content/img200808/Ballistics10a.png" alt="Ballistics Animation Demo" /></p>
<p>The workbook containing this model can be downloaded here: <a href="http://peltiertech.com/WordPress/wp-content/img200808/Ballistics.zip"title="Ballistics Animation Demo Workbook" >Ballistics.zip</a>.</p>



Bookmark and share this entry:


	<a rel="nofollow"  href="http://twitter.com/home?status=Ballistics%20Animation%20-%20http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fballistics-animation%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://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fballistics-animation%2F&amp;title=Ballistics%20Animation&amp;bodytext=I%27ve%20done%20a%20handful%20of%20animations%20lately%3A%0D%0A%0D%0A%0D%0A%0D%0A%09%09Gas%20Prices%20-%20Animated%20Bar%20Chart%20for%20Excel%0D%0A%09%09Gas%20Prices%20-%20Animated%20Bar%20Chart%20for%20Excel%202%0D%0A%09%09Gapminder%20for%20Excel%0D%0A%09%09Rolling%20Wheel%20Animation%0D%0A%0D%0A%0D%0A%0D%0AThis%20example%20shows%20the%20position%20and%20path%20of%20a%20moving%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://www.facebook.com/share.php?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fballistics-animation%2F&amp;t=Ballistics%20Animation" 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://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fballistics-animation%2F&amp;title=Ballistics%20Animation&amp;source=Peltier+Tech+Blog+Peltier+Tech+Excel+Charts+and+Programming+Blog&amp;summary=I%27ve%20done%20a%20handful%20of%20animations%20lately%3A%0D%0A%0D%0A%0D%0A%0D%0A%09%09Gas%20Prices%20-%20Animated%20Bar%20Chart%20for%20Excel%0D%0A%09%09Gas%20Prices%20-%20Animated%20Bar%20Chart%20for%20Excel%202%0D%0A%09%09Gapminder%20for%20Excel%0D%0A%09%09Rolling%20Wheel%20Animation%0D%0A%0D%0A%0D%0A%0D%0AThis%20example%20shows%20the%20position%20and%20path%20of%20a%20moving%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://delicious.com/post?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fballistics-animation%2F&amp;title=Ballistics%20Animation&amp;notes=I%27ve%20done%20a%20handful%20of%20animations%20lately%3A%0D%0A%0D%0A%0D%0A%0D%0A%09%09Gas%20Prices%20-%20Animated%20Bar%20Chart%20for%20Excel%0D%0A%09%09Gas%20Prices%20-%20Animated%20Bar%20Chart%20for%20Excel%202%0D%0A%09%09Gapminder%20for%20Excel%0D%0A%09%09Rolling%20Wheel%20Animation%0D%0A%0D%0A%0D%0A%0D%0AThis%20example%20shows%20the%20position%20and%20path%20of%20a%20moving%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://technorati.com/faves?add=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fballistics-animation%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://www.stumbleupon.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fballistics-animation%2F&amp;title=Ballistics%20Animation" 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%2Fballistics-animation%2F&amp;title=Ballistics%20Animation&amp;annotation=I%27ve%20done%20a%20handful%20of%20animations%20lately%3A%0D%0A%0D%0A%0D%0A%0D%0A%09%09Gas%20Prices%20-%20Animated%20Bar%20Chart%20for%20Excel%0D%0A%09%09Gas%20Prices%20-%20Animated%20Bar%20Chart%20for%20Excel%202%0D%0A%09%09Gapminder%20for%20Excel%0D%0A%09%09Rolling%20Wheel%20Animation%0D%0A%0D%0A%0D%0A%0D%0AThis%20example%20shows%20the%20position%20and%20path%20of%20a%20moving%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%2Fballistics-animation%2F&amp;title=Ballistics%20Animation" 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%2Fballistics-animation%2F&amp;t=Ballistics%20Animation" 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=Ballistics%20Animation&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fballistics-animation%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://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fballistics-animation%2F&amp;submitHeadline=Ballistics%20Animation&amp;submitSummary=I%27ve%20done%20a%20handful%20of%20animations%20lately%3A%0D%0A%0D%0A%0D%0A%0D%0A%09%09Gas%20Prices%20-%20Animated%20Bar%20Chart%20for%20Excel%0D%0A%09%09Gas%20Prices%20-%20Animated%20Bar%20Chart%20for%20Excel%202%0D%0A%09%09Gapminder%20for%20Excel%0D%0A%09%09Rolling%20Wheel%20Animation%0D%0A%0D%0A%0D%0A%0D%0AThis%20example%20shows%20the%20position%20and%20path%20of%20a%20moving%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>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fballistics-animation%2F&amp;t=Ballistics%20Animation&amp;s=I%27ve%20done%20a%20handful%20of%20animations%20lately%3A%0D%0A%0D%0A%0D%0A%0D%0A%09%09Gas%20Prices%20-%20Animated%20Bar%20Chart%20for%20Excel%0D%0A%09%09Gas%20Prices%20-%20Animated%20Bar%20Chart%20for%20Excel%202%0D%0A%09%09Gapminder%20for%20Excel%0D%0A%09%09Rolling%20Wheel%20Animation%0D%0A%0D%0A%0D%0A%0D%0AThis%20example%20shows%20the%20position%20and%20path%20of%20a%20moving%20" title="Tumblr"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://peltiertech.com/WordPress/ballistics-animation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Presidential Demographics</title>
		<link>http://peltiertech.com/WordPress/presidential-demographics/</link>
		<comments>http://peltiertech.com/WordPress/presidential-demographics/#comments</comments>
		<pubDate>Sun, 24 Aug 2008 17:08:03 +0000</pubDate>
		<dc:creator>Jon Peltier</dc:creator>
				<category><![CDATA[Dynamic Charts]]></category>
		<category><![CDATA[Animated Charts]]></category>
		<category><![CDATA[EagerEyes]]></category>

		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=366</guid>
		<description><![CDATA[In Presidential Demographics, Part II, Robert Kosara has posted a very nice interactive infographic that allows you to answer a host of questions about US presidents:
Would McCain be the oldest US President? Would Obama be the youngest? Who was the youngest president? Were presidents younger in the past or older? What is the highest number [...]]]></description>
			<content:encoded><![CDATA[<p>In <a href="http://eagereyes.org/applications/PresidentialDemographicsII.html" rel="nofollow" title="Presidential Demographics, Part II" >Presidential Demographics, Part II</a>, <a href="http://eagereyes.org/user/robert_kosara" rel="nofollow" >Robert Kosara</a> has posted a very nice interactive infographic that allows you to answer a host of questions about US presidents:</p>
<p style="padding-left: 30px;"><em>Would McCain be the oldest US President? Would Obama be the youngest? Who was the youngest president? Were presidents younger in the past or older? What is the highest number of years a former president lived after leaving office? Who served the longest? Whose term was the shortest?</em></p>
<p>The chart lets you view presidents lifetimes and terms in office on a regular timeline, aligned by birth, or aligned by start of time in office. When you mouse over a bar, a pop-up displays the president&#8217;s name, date of birth and death, and dates in office. Here are a few screenshots.</p>
<p align="center"><img title="EagerEyes Presidential Demographics Timeline" src="http://peltiertech.com/WordPress/wp-content/img200808/PresDemoTimeLine.png" alt="EagerEyes Presidential Demographics Timeline" width="575" height="499" /></p>
<p align="center"><img title="EagerEyes Presidential Demographics By Birth" src="http://peltiertech.com/WordPress/wp-content/img200808/PresDemoBirth.png" alt="EagerEyes Presidential Demographics By Birth" width="575" height="499" /></p>
<p align="center"><img title="EagerEyes Presidential Demographics By Ascension" src="http://peltiertech.com/WordPress/wp-content/img200808/PresDemoAscension.png" alt="EagerEyes Presidential Demographics By Ascension" width="575" height="499" /></p>
<p>I found this graphic very interesting, and I even learned a couple things. For example, I knew JFK was the youngest president ever to take office, until this chart showed me that Teddy Roosevelt actually held this honor. If I get ambitious, I may try to replicate this graphic in Excel.</p>



Bookmark and share this entry:


	<a rel="nofollow"  href="http://twitter.com/home?status=Presidential%20Demographics%20-%20http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fpresidential-demographics%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://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fpresidential-demographics%2F&amp;title=Presidential%20Demographics&amp;bodytext=In%20Presidential%20Demographics%2C%20Part%20II%2C%20Robert%20Kosara%20has%20posted%20a%20very%20nice%20interactive%20infographic%20that%20allows%20you%20to%20answer%20a%20host%20of%20questions%20about%20US%20presidents%3A%0D%0A%0D%0AWould%20McCain%20be%20the%20oldest%20US%20President%3F%20Would%20Obama%20be%20the%20youngest%3F%20Who%20was%20th" 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://www.facebook.com/share.php?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fpresidential-demographics%2F&amp;t=Presidential%20Demographics" 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://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fpresidential-demographics%2F&amp;title=Presidential%20Demographics&amp;source=Peltier+Tech+Blog+Peltier+Tech+Excel+Charts+and+Programming+Blog&amp;summary=In%20Presidential%20Demographics%2C%20Part%20II%2C%20Robert%20Kosara%20has%20posted%20a%20very%20nice%20interactive%20infographic%20that%20allows%20you%20to%20answer%20a%20host%20of%20questions%20about%20US%20presidents%3A%0D%0A%0D%0AWould%20McCain%20be%20the%20oldest%20US%20President%3F%20Would%20Obama%20be%20the%20youngest%3F%20Who%20was%20th" 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://delicious.com/post?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fpresidential-demographics%2F&amp;title=Presidential%20Demographics&amp;notes=In%20Presidential%20Demographics%2C%20Part%20II%2C%20Robert%20Kosara%20has%20posted%20a%20very%20nice%20interactive%20infographic%20that%20allows%20you%20to%20answer%20a%20host%20of%20questions%20about%20US%20presidents%3A%0D%0A%0D%0AWould%20McCain%20be%20the%20oldest%20US%20President%3F%20Would%20Obama%20be%20the%20youngest%3F%20Who%20was%20th" 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://technorati.com/faves?add=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fpresidential-demographics%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://www.stumbleupon.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fpresidential-demographics%2F&amp;title=Presidential%20Demographics" 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%2Fpresidential-demographics%2F&amp;title=Presidential%20Demographics&amp;annotation=In%20Presidential%20Demographics%2C%20Part%20II%2C%20Robert%20Kosara%20has%20posted%20a%20very%20nice%20interactive%20infographic%20that%20allows%20you%20to%20answer%20a%20host%20of%20questions%20about%20US%20presidents%3A%0D%0A%0D%0AWould%20McCain%20be%20the%20oldest%20US%20President%3F%20Would%20Obama%20be%20the%20youngest%3F%20Who%20was%20th" 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%2Fpresidential-demographics%2F&amp;title=Presidential%20Demographics" 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%2Fpresidential-demographics%2F&amp;t=Presidential%20Demographics" 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=Presidential%20Demographics&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fpresidential-demographics%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://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fpresidential-demographics%2F&amp;submitHeadline=Presidential%20Demographics&amp;submitSummary=In%20Presidential%20Demographics%2C%20Part%20II%2C%20Robert%20Kosara%20has%20posted%20a%20very%20nice%20interactive%20infographic%20that%20allows%20you%20to%20answer%20a%20host%20of%20questions%20about%20US%20presidents%3A%0D%0A%0D%0AWould%20McCain%20be%20the%20oldest%20US%20President%3F%20Would%20Obama%20be%20the%20youngest%3F%20Who%20was%20th&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>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fpresidential-demographics%2F&amp;t=Presidential%20Demographics&amp;s=In%20Presidential%20Demographics%2C%20Part%20II%2C%20Robert%20Kosara%20has%20posted%20a%20very%20nice%20interactive%20infographic%20that%20allows%20you%20to%20answer%20a%20host%20of%20questions%20about%20US%20presidents%3A%0D%0A%0D%0AWould%20McCain%20be%20the%20oldest%20US%20President%3F%20Would%20Obama%20be%20the%20youngest%3F%20Who%20was%20th" title="Tumblr"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://peltiertech.com/WordPress/presidential-demographics/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Rolling Wheel Animation</title>
		<link>http://peltiertech.com/WordPress/rolling-wheel-animation/</link>
		<comments>http://peltiertech.com/WordPress/rolling-wheel-animation/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 02:02:34 +0000</pubDate>
		<dc:creator>Jon Peltier</dc:creator>
				<category><![CDATA[Dynamic Charts]]></category>
		<category><![CDATA[Animated Charts]]></category>
		<category><![CDATA[Educational]]></category>
		<category><![CDATA[Science & Engineering]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=316</guid>
		<description><![CDATA[A college science professor named Roger Blickensderfer wrote to me about an animation he was working on. He wanted to trace the path followed by a point on the rim of a rolling wheel. Roger had cobbled something together, and I fiddled with it, and it kind of worked. But I decided I wanted it [...]]]></description>
			<content:encoded><![CDATA[<p>A college science professor named Roger Blickensderfer wrote to me about an animation he was working on. He wanted to trace the path followed by a point on the rim of a rolling wheel. Roger had cobbled something together, and I fiddled with it, and it kind of worked. But I decided I wanted it to do a bit more. I started with Roger&#8217;s basic idea and added my flexible animation from the <a href="http://peltiertech.com/WordPress/2008/08/08/gas-prices-animated-bar-chart-for-excel/"title="Gas Prices - Animated Bar Chart for Excel" >Gas Prices &#8211; Animated Bar Chart for Excel</a> example. I added a second point, which can be placed at a different distance from the axis of the wheel, and I added a checkbox to show or hide the curves traced by these two points.</p>
<p>I built an animation which can be extracted <a href="http://peltiertech.com/WordPress/wp-content/img200808/RollingWheel.zip"title="RollingWheel.zip" >from this downloadable zip file</a>. The top of the worksheet has the playback controls and other inputs to the left and the chart to the right. The first example uses a wheel radius of 10 and a second point at a radius of 0 (the axis of the wheel)</p>
<p align="center"><img title="Rolling Wheel Setup" src="http://peltiertech.com/WordPress/wp-content/img200808/RollingWheel1.png" alt="Rolling Wheel Setup" width="519" height="151" /></p>
<p><span id="more-316"></span>Press the button to start the animation. The red line stays at the same height, while the blue line traces a curve called a cycloid.</p>
<p align="center"><img title="Rolling Wheel Animation" src="http://peltiertech.com/WordPress/wp-content/img200808/RollingWheel2.png" alt="Rolling Wheel Setup" /></p>
<p align="center"><img title="Rolling Wheel Animation" src="http://peltiertech.com/WordPress/wp-content/img200808/RollingWheel2a.png" alt="Rolling Wheel Setup" /></p>
<p align="center"><img title="Rolling Wheel Animation" src="http://peltiertech.com/WordPress/wp-content/img200808/RollingWheel2b.png" alt="Rolling Wheel Setup" /></p>
<p align="center"><img title="Rolling Wheel Animation" src="http://peltiertech.com/WordPress/wp-content/img200808/RollingWheel2c.png" alt="Rolling Wheel Setup" /></p>
<p align="center"><img title="Rolling Wheel Animation" src="http://peltiertech.com/WordPress/wp-content/img200808/RollingWheel3.png" alt="Rolling Wheel Setup" /></p>
<p>Here are the traces when the second point is at a radius of 5 (midradius).</p>
<p align="center"><img title="Rolling Wheel Animation" src="http://peltiertech.com/WordPress/wp-content/img200808/RollingWheel4.png" alt="Rolling Wheel Setup" /></p>
<p>Here are the traces when the second point is at a radius of 15 (outside the radius of the wheel rim). This is similar to the case of a train wheel, which has a flange to keep the tain on the track. The outer surface of the flange actually moves backwards at the bottom of its travel.</p>
<p align="center"><img title="Rolling Wheel Animation" src="http://peltiertech.com/WordPress/wp-content/img200808/RollingWheel5.png" alt="Rolling Wheel Setup" /></p>
<p>In this example, the second point has a radius of -10, so it appears on the rim opposite the first point.</p>
<p align="center"><img title="Rolling Wheel Animation" src="http://peltiertech.com/WordPress/wp-content/img200808/RollingWheel6.png" alt="Rolling Wheel Setup" /></p>
<p>I found another explanation of this in&nbsp;<a href="http://www.physclips.unsw.edu.au/jw/rolling.htm" rel="nofollow" title="Rolling: the physsics of wheels" >Rolling: the physics of wheels</a>, on the web site of the School of Physics at The University of New South Wales. There is a large collection of similar animations on their <a href="http://www.physclips.unsw.edu.au/" rel="nofollow" title="Physclips: Mechanics with animations and video film clips" >Physclips page</a>.</p>



Bookmark and share this entry:


	<a rel="nofollow"  href="http://twitter.com/home?status=Rolling%20Wheel%20Animation%20-%20http%3A%2F%2Fpeltiertech.com%2FWordPress%2Frolling-wheel-animation%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://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Frolling-wheel-animation%2F&amp;title=Rolling%20Wheel%20Animation&amp;bodytext=A%20college%20science%20professor%20named%20Roger%20Blickensderfer%20wrote%20to%20me%20about%20an%20animation%20he%20was%20working%20on.%20He%20wanted%20to%20trace%20the%20path%20followed%20by%20a%20point%20on%20the%20rim%20of%20a%20rolling%20wheel.%20Roger%20had%20cobbled%20something%20together%2C%20and%20I%20fiddled%20with%20it%2C%20and%20i" 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://www.facebook.com/share.php?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Frolling-wheel-animation%2F&amp;t=Rolling%20Wheel%20Animation" 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://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Frolling-wheel-animation%2F&amp;title=Rolling%20Wheel%20Animation&amp;source=Peltier+Tech+Blog+Peltier+Tech+Excel+Charts+and+Programming+Blog&amp;summary=A%20college%20science%20professor%20named%20Roger%20Blickensderfer%20wrote%20to%20me%20about%20an%20animation%20he%20was%20working%20on.%20He%20wanted%20to%20trace%20the%20path%20followed%20by%20a%20point%20on%20the%20rim%20of%20a%20rolling%20wheel.%20Roger%20had%20cobbled%20something%20together%2C%20and%20I%20fiddled%20with%20it%2C%20and%20i" 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://delicious.com/post?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Frolling-wheel-animation%2F&amp;title=Rolling%20Wheel%20Animation&amp;notes=A%20college%20science%20professor%20named%20Roger%20Blickensderfer%20wrote%20to%20me%20about%20an%20animation%20he%20was%20working%20on.%20He%20wanted%20to%20trace%20the%20path%20followed%20by%20a%20point%20on%20the%20rim%20of%20a%20rolling%20wheel.%20Roger%20had%20cobbled%20something%20together%2C%20and%20I%20fiddled%20with%20it%2C%20and%20i" 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://technorati.com/faves?add=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Frolling-wheel-animation%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://www.stumbleupon.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Frolling-wheel-animation%2F&amp;title=Rolling%20Wheel%20Animation" 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%2Frolling-wheel-animation%2F&amp;title=Rolling%20Wheel%20Animation&amp;annotation=A%20college%20science%20professor%20named%20Roger%20Blickensderfer%20wrote%20to%20me%20about%20an%20animation%20he%20was%20working%20on.%20He%20wanted%20to%20trace%20the%20path%20followed%20by%20a%20point%20on%20the%20rim%20of%20a%20rolling%20wheel.%20Roger%20had%20cobbled%20something%20together%2C%20and%20I%20fiddled%20with%20it%2C%20and%20i" 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%2Frolling-wheel-animation%2F&amp;title=Rolling%20Wheel%20Animation" 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%2Frolling-wheel-animation%2F&amp;t=Rolling%20Wheel%20Animation" 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=Rolling%20Wheel%20Animation&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Frolling-wheel-animation%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://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Frolling-wheel-animation%2F&amp;submitHeadline=Rolling%20Wheel%20Animation&amp;submitSummary=A%20college%20science%20professor%20named%20Roger%20Blickensderfer%20wrote%20to%20me%20about%20an%20animation%20he%20was%20working%20on.%20He%20wanted%20to%20trace%20the%20path%20followed%20by%20a%20point%20on%20the%20rim%20of%20a%20rolling%20wheel.%20Roger%20had%20cobbled%20something%20together%2C%20and%20I%20fiddled%20with%20it%2C%20and%20i&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>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Frolling-wheel-animation%2F&amp;t=Rolling%20Wheel%20Animation&amp;s=A%20college%20science%20professor%20named%20Roger%20Blickensderfer%20wrote%20to%20me%20about%20an%20animation%20he%20was%20working%20on.%20He%20wanted%20to%20trace%20the%20path%20followed%20by%20a%20point%20on%20the%20rim%20of%20a%20rolling%20wheel.%20Roger%20had%20cobbled%20something%20together%2C%20and%20I%20fiddled%20with%20it%2C%20and%20i" title="Tumblr"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://peltiertech.com/WordPress/rolling-wheel-animation/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Gas Prices &#8211; Interactive Time Series</title>
		<link>http://peltiertech.com/WordPress/gas-prices-interactive-time-series/</link>
		<comments>http://peltiertech.com/WordPress/gas-prices-interactive-time-series/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 16:47:17 +0000</pubDate>
		<dc:creator>Jon Peltier</dc:creator>
				<category><![CDATA[Dynamic Charts]]></category>
		<category><![CDATA[Animated Charts]]></category>
		<category><![CDATA[FlowingData]]></category>
		<category><![CDATA[Interactive]]></category>

		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=226</guid>
		<description><![CDATA[In Watch the Rise of Gasoline Retail Prices, 1993 &#8211; 2008, Nathan shows an animated bar chart that traces the price of gasoline over the past 15 years. A number of readers responded with links to assorted time series.
I downloaded Nathan&#8217;s data workbook and duplicated Nathan&#8217;s animated bar chart in Excel in Gas Prices &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>In <a href="http://flowingdata.com/2008/08/08/watch-the-rise-of-gasoline-retails-prices-1993-2008/" rel="nofollow" title="Watch the Rise of Gasoline Retail Prices, 1993 - 2008" >Watch the Rise of Gasoline Retail Prices, 1993 &#8211; 2008</a>, <a href="http://flowingdata.com/" rel="nofollow" title="FlowingData" >Nathan</a> shows an animated bar chart that traces the price of gasoline over the past 15 years. A number of readers responded with links to assorted time series.</p>
<p>I downloaded Nathan&#8217;s <a href="http://projects.flowingdata.com/gas-prices/data/pet_pri_gnd_a_epm0_pte_cpgal_w.xls" rel="nofollow" title="Gas Price Workbook 1993-2008" >data workbook</a> and duplicated Nathan&#8217;s animated bar chart in Excel in <a href="http://peltiertech.com/WordPress/2008/08/08/gas-prices-animated-bar-chart-for-excel/"title="Friday, August 8, 2008" rel="bookmark" >Gas Prices &#8211; Animated Bar Chart for Excel</a>, and while the animation was captivating, the viewer loses track of the actual time period of the data at the point of the animation. I added a small inset chart in <a href="http://peltiertech.com/WordPress/2008/08/09/gas-prices-animated-bar-chart-for-excel-2/"title="Saturday, August 9, 2008" rel="bookmark" >Gas Prices &#8211; Animated Bar Chart for Excel 2</a> to show progreess along the entire time series, but this wasn&#8217;t totally satisfactory.</p>
<p>I went to work creating an interactive time series chart in Excel. The basic chart is a line chart showing all the data; all series are in a light color, and one particular series, selected in a listbox, is highlighted in a bright color. This technique was described in <a href="http://peltiertech.com/WordPress/2008/07/22/easier-interactive-multiple-line-chart/"class="simple_alink" title="Easier Interactive Multiple Line Chart" >Easier Interactive Multiple Line Chart</a> and in <a href="../../Excel/Charts/ParallelCoord.html" rel="nofollow" >Interactive Parallel Coordinates Chart</a>.</p>
<p>The top section of the worksheet is shown below. I inserted a couple columns to accommodate the highlighted series. Cell C1 is named ColIndex, and its value is used in formulas in column A to determine which column between D and L is reflected in column A. The formula in cell A4, for example, is</p>
<p>=INDEX(D4:L4,ColIndex)</p>
<p align="center"><img src="http://peltiertech.com/WordPress/wp-content/img200808/GasPricesLineData.png" alt="" /></p>
<p>The chart is shown below. The listbox is linked to the ColIndex cell, so changing the listbox changes the values in column A of the data sheet.</p>
<p>All series have been plotted in the line chart, using the dates in column C as the X values, and the prices in columns D through L for the Y values. All of these series are colored light gray. The prices in column A are added to the chart as a new series, and this series is given a bright color so it stands out. The last point is given a data label, using the Series Name option.</p>
<p align="center"><img src="http://peltiertech.com/WordPress/wp-content/img200808/GasPricesLineChart.png" alt="" /></p>
<p>To try out the animated chart, download this <a href="http://peltiertech.com/WordPress/wp-content/img200808/GasPricesLine.zip">zip file</a>. It is unlocked and unprotected, so you can see how it is constructed and how it works.</p>



Bookmark and share this entry:


	<a rel="nofollow"  href="http://twitter.com/home?status=Gas%20Prices%20-%20Interactive%20Time%20Series%20-%20http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fgas-prices-interactive-time-series%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://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fgas-prices-interactive-time-series%2F&amp;title=Gas%20Prices%20-%20Interactive%20Time%20Series&amp;bodytext=In%20Watch%20the%20Rise%20of%20Gasoline%20Retail%20Prices%2C%201993%20-%202008%2C%20Nathan%20shows%20an%20animated%20bar%20chart%20that%20traces%20the%20price%20of%20gasoline%20over%20the%20past%2015%20years.%20A%20number%20of%20readers%20responded%20with%20links%20to%20assorted%20time%20series.%0D%0A%0D%0AI%20downloaded%20Nathan%27s%20data%20wor" 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://www.facebook.com/share.php?u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fgas-prices-interactive-time-series%2F&amp;t=Gas%20Prices%20-%20Interactive%20Time%20Series" 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://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fgas-prices-interactive-time-series%2F&amp;title=Gas%20Prices%20-%20Interactive%20Time%20Series&amp;source=Peltier+Tech+Blog+Peltier+Tech+Excel+Charts+and+Programming+Blog&amp;summary=In%20Watch%20the%20Rise%20of%20Gasoline%20Retail%20Prices%2C%201993%20-%202008%2C%20Nathan%20shows%20an%20animated%20bar%20chart%20that%20traces%20the%20price%20of%20gasoline%20over%20the%20past%2015%20years.%20A%20number%20of%20readers%20responded%20with%20links%20to%20assorted%20time%20series.%0D%0A%0D%0AI%20downloaded%20Nathan%27s%20data%20wor" 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://delicious.com/post?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fgas-prices-interactive-time-series%2F&amp;title=Gas%20Prices%20-%20Interactive%20Time%20Series&amp;notes=In%20Watch%20the%20Rise%20of%20Gasoline%20Retail%20Prices%2C%201993%20-%202008%2C%20Nathan%20shows%20an%20animated%20bar%20chart%20that%20traces%20the%20price%20of%20gasoline%20over%20the%20past%2015%20years.%20A%20number%20of%20readers%20responded%20with%20links%20to%20assorted%20time%20series.%0D%0A%0D%0AI%20downloaded%20Nathan%27s%20data%20wor" 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://technorati.com/faves?add=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fgas-prices-interactive-time-series%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://www.stumbleupon.com/submit?url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fgas-prices-interactive-time-series%2F&amp;title=Gas%20Prices%20-%20Interactive%20Time%20Series" 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%2Fgas-prices-interactive-time-series%2F&amp;title=Gas%20Prices%20-%20Interactive%20Time%20Series&amp;annotation=In%20Watch%20the%20Rise%20of%20Gasoline%20Retail%20Prices%2C%201993%20-%202008%2C%20Nathan%20shows%20an%20animated%20bar%20chart%20that%20traces%20the%20price%20of%20gasoline%20over%20the%20past%2015%20years.%20A%20number%20of%20readers%20responded%20with%20links%20to%20assorted%20time%20series.%0D%0A%0D%0AI%20downloaded%20Nathan%27s%20data%20wor" 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%2Fgas-prices-interactive-time-series%2F&amp;title=Gas%20Prices%20-%20Interactive%20Time%20Series" 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%2Fgas-prices-interactive-time-series%2F&amp;t=Gas%20Prices%20-%20Interactive%20Time%20Series" 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=Gas%20Prices%20-%20Interactive%20Time%20Series&amp;url=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fgas-prices-interactive-time-series%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://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fgas-prices-interactive-time-series%2F&amp;submitHeadline=Gas%20Prices%20-%20Interactive%20Time%20Series&amp;submitSummary=In%20Watch%20the%20Rise%20of%20Gasoline%20Retail%20Prices%2C%201993%20-%202008%2C%20Nathan%20shows%20an%20animated%20bar%20chart%20that%20traces%20the%20price%20of%20gasoline%20over%20the%20past%2015%20years.%20A%20number%20of%20readers%20responded%20with%20links%20to%20assorted%20time%20series.%0D%0A%0D%0AI%20downloaded%20Nathan%27s%20data%20wor&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>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fpeltiertech.com%2FWordPress%2Fgas-prices-interactive-time-series%2F&amp;t=Gas%20Prices%20-%20Interactive%20Time%20Series&amp;s=In%20Watch%20the%20Rise%20of%20Gasoline%20Retail%20Prices%2C%201993%20-%202008%2C%20Nathan%20shows%20an%20animated%20bar%20chart%20that%20traces%20the%20price%20of%20gasoline%20over%20the%20past%2015%20years.%20A%20number%20of%20readers%20responded%20with%20links%20to%20assorted%20time%20series.%0D%0A%0D%0AI%20downloaded%20Nathan%27s%20data%20wor" title="Tumblr"><img src="http://peltiertech.com/WordPress/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://peltiertech.com/WordPress/gas-prices-interactive-time-series/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>
