<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Stack Columns In Order Of Size</title>
	<atom:link href="http://peltiertech.com/WordPress/stack-columns-in-order-of-size/feed/" rel="self" type="application/rss+xml" />
	<link>http://peltiertech.com/WordPress/stack-columns-in-order-of-size/</link>
	<description>PTS Excel Charts and Tutorials Blog</description>
	<lastBuildDate>Sat, 21 Nov 2009 04:01:08 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Bob</title>
		<link>http://peltiertech.com/WordPress/stack-columns-in-order-of-size/comment-page-1/#comment-14282</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Thu, 21 May 2009 21:08:06 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1944#comment-14282</guid>
		<description>Hi, 

Just because it is possible to build this chart in Excel. Doesn&#039;t mean you should. :)

Although, well crafted VBA is always fun to look at for inspiration.

Cheers,

Bob</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>Just because it is possible to build this chart in Excel. Doesn&#8217;t mean you should. :)</p>
<p>Although, well crafted VBA is always fun to look at for inspiration.</p>
<p>Cheers,</p>
<p>Bob</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Analytics Team &#187; Blog Archive &#187; Reorder stacked columns in Excel charts</title>
		<link>http://peltiertech.com/WordPress/stack-columns-in-order-of-size/comment-page-1/#comment-14254</link>
		<dc:creator>Analytics Team &#187; Blog Archive &#187; Reorder stacked columns in Excel charts</dc:creator>
		<pubDate>Thu, 21 May 2009 05:18:27 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1944#comment-14254</guid>
		<description>[...] in Excel, the columns are normally stacked in whatever order you put the series in. Check out this how-to guide for reorganizing the columns so the largest values are on the bottom of each [...]</description>
		<content:encoded><![CDATA[<p>[...] in Excel, the columns are normally stacked in whatever order you put the series in. Check out this how-to guide for reorganizing the columns so the largest values are on the bottom of each [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/stack-columns-in-order-of-size/comment-page-1/#comment-14249</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Wed, 20 May 2009 23:21:27 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1944#comment-14249</guid>
		<description>Bob -

The more I look at this chart, the less effective I think it is. I think I&#039;d prefer a clustered column chart.</description>
		<content:encoded><![CDATA[<p>Bob -</p>
<p>The more I look at this chart, the less effective I think it is. I think I&#8217;d prefer a clustered column chart.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob</title>
		<link>http://peltiertech.com/WordPress/stack-columns-in-order-of-size/comment-page-1/#comment-14245</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Wed, 20 May 2009 19:53:23 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1944#comment-14245</guid>
		<description>Hi,

Wouldn&#039;t the same information be better presented in a standard cluster chart?
Or perhaps a panel chart?

Just a thought.

Cheers,

Bob</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Wouldn&#8217;t the same information be better presented in a standard cluster chart?<br />
Or perhaps a panel chart?</p>
<p>Just a thought.</p>
<p>Cheers,</p>
<p>Bob</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/stack-columns-in-order-of-size/comment-page-1/#comment-14196</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Tue, 19 May 2009 10:19:44 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1944#comment-14196</guid>
		<description>One trick. if you need to preserve order when sorting duplicates, is to add a small amount to each value according to position. If columns are A to Z, left to right, add something like (value+column())/10000 to each. It means maintaining an extra data region, but you need an extra anyway to contain the sorted values.</description>
		<content:encoded><![CDATA[<p>One trick. if you need to preserve order when sorting duplicates, is to add a small amount to each value according to position. If columns are A to Z, left to right, add something like (value+column())/10000 to each. It means maintaining an extra data region, but you need an extra anyway to contain the sorted values.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DMurphy</title>
		<link>http://peltiertech.com/WordPress/stack-columns-in-order-of-size/comment-page-1/#comment-14191</link>
		<dc:creator>DMurphy</dc:creator>
		<pubDate>Tue, 19 May 2009 08:01:12 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1944#comment-14191</guid>
		<description>...but here&#039;s a version which appears to work if there are 3 or 4 identical values.

http://www.box.net/shared/mm3i06ql3r</description>
		<content:encoded><![CDATA[<p>&#8230;but here&#8217;s a version which appears to work if there are 3 or 4 identical values.</p>
<p><a href="http://www.box.net/shared/mm3i06ql3r" rel="nofollow">http://www.box.net/shared/mm3i06ql3r</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DMurphy</title>
		<link>http://peltiertech.com/WordPress/stack-columns-in-order-of-size/comment-page-1/#comment-14190</link>
		<dc:creator>DMurphy</dc:creator>
		<pubDate>Tue, 19 May 2009 07:40:33 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1944#comment-14190</guid>
		<description>Sorry folks - just noticed that it fails if there are triplicates!  Needs further thought!</description>
		<content:encoded><![CDATA[<p>Sorry folks &#8211; just noticed that it fails if there are triplicates!  Needs further thought!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/stack-columns-in-order-of-size/comment-page-1/#comment-14162</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Mon, 18 May 2009 18:12:50 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1944#comment-14162</guid>
		<description>I started with LARGE, but got tripped up by duplicate values. I&#039;ll have to check out your workbook to see how you handled that.</description>
		<content:encoded><![CDATA[<p>I started with LARGE, but got tripped up by duplicate values. I&#8217;ll have to check out your workbook to see how you handled that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DMurphy</title>
		<link>http://peltiertech.com/WordPress/stack-columns-in-order-of-size/comment-page-1/#comment-14156</link>
		<dc:creator>DMurphy</dc:creator>
		<pubDate>Mon, 18 May 2009 15:07:55 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1944#comment-14156</guid>
		<description>You like setting a challenge, Jon, so here is my solution to the 4-series problem.  I&#039;m not a great fan of embedded IFs/ANDs/ORs, so I went down the line of using MAX, MIN and LARGE functions (SMALL could also have worked):

http://www.box.net/shared/mm3i06ql3r

Please feel free to share.</description>
		<content:encoded><![CDATA[<p>You like setting a challenge, Jon, so here is my solution to the 4-series problem.  I&#8217;m not a great fan of embedded IFs/ANDs/ORs, so I went down the line of using MAX, MIN and LARGE functions (SMALL could also have worked):</p>
<p><a href="http://www.box.net/shared/mm3i06ql3r" rel="nofollow">http://www.box.net/shared/mm3i06ql3r</a></p>
<p>Please feel free to share.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/stack-columns-in-order-of-size/comment-page-1/#comment-14154</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Mon, 18 May 2009 13:54:14 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1944#comment-14154</guid>
		<description>Scott -

Your approach seems somewhat simpler to construct and follow than mine. See, like I tell people, sometimes it&#039;s smarter to use a couple extra columns than try to write some massively clever formulas which only save a column or two.

When I get a chance I&#039;ll rewrite my blog entry using your setup.</description>
		<content:encoded><![CDATA[<p>Scott -</p>
<p>Your approach seems somewhat simpler to construct and follow than mine. See, like I tell people, sometimes it&#8217;s smarter to use a couple extra columns than try to write some massively clever formulas which only save a column or two.</p>
<p>When I get a chance I&#8217;ll rewrite my blog entry using your setup.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
