<?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: Overlapped Bar Chart &#8211; Longer Bars in Back</title>
	<atom:link href="http://peltiertech.com/WordPress/overlapped-bar-chart-longer-bars-in-back/feed/" rel="self" type="application/rss+xml" />
	<link>http://peltiertech.com/WordPress/overlapped-bar-chart-longer-bars-in-back/</link>
	<description>Peltier Tech Excel Charts and Programming Blog</description>
	<lastBuildDate>Fri, 10 Feb 2012 23:37:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/overlapped-bar-chart-longer-bars-in-back/comment-page-1/#comment-142785</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Wed, 12 Oct 2011 22:41:26 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=640#comment-142785</guid>
		<description>Your description indicated that conferences were important. What I suggested was not to plot Y1, Y2, and Y3, but rather (Y2-Y1) and (Y3-Y1). This accentuates the differences, but obscures the actual values.</description>
		<content:encoded><![CDATA[<p>Your description indicated that conferences were important. What I suggested was not to plot Y1, Y2, and Y3, but rather (Y2-Y1) and (Y3-Y1). This accentuates the differences, but obscures the actual values.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luis Gonzalez</title>
		<link>http://peltiertech.com/WordPress/overlapped-bar-chart-longer-bars-in-back/comment-page-1/#comment-142746</link>
		<dc:creator>Luis Gonzalez</dc:creator>
		<pubDate>Wed, 12 Oct 2011 20:03:02 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=640#comment-142746</guid>
		<description>Jon,
 
Thanks for the quick reply.
 
I&#039;m not sure I understand what you are proposing. Would I still be able to see the right series values on axis Y?
Thanks again</description>
		<content:encoded><![CDATA[<p>Jon,</p>
<p>Thanks for the quick reply.</p>
<p>I&#8217;m not sure I understand what you are proposing. Would I still be able to see the right series values on axis Y?<br />
Thanks again</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/overlapped-bar-chart-longer-bars-in-back/comment-page-1/#comment-142686</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Wed, 12 Oct 2011 16:16:05 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=640#comment-142686</guid>
		<description>Luis -

Does it make sense to treat one of the series as the baseline, subtract its value from the other two series, and plot the deviation?</description>
		<content:encoded><![CDATA[<p>Luis -</p>
<p>Does it make sense to treat one of the series as the baseline, subtract its value from the other two series, and plot the deviation?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luis Gonzalez</title>
		<link>http://peltiertech.com/WordPress/overlapped-bar-chart-longer-bars-in-back/comment-page-1/#comment-142647</link>
		<dc:creator>Luis Gonzalez</dc:creator>
		<pubDate>Wed, 12 Oct 2011 13:53:18 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=640#comment-142647</guid>
		<description>I need a line chart to represent 3 different series, the problem is that the values of the series are very close and they overlap making it impossible to appreciate the differences even if the range is widen.

Any suggestion?

I really appreciate your help.

Thank you,

Luis G</description>
		<content:encoded><![CDATA[<p>I need a line chart to represent 3 different series, the problem is that the values of the series are very close and they overlap making it impossible to appreciate the differences even if the range is widen.</p>
<p>Any suggestion?</p>
<p>I really appreciate your help.</p>
<p>Thank you,</p>
<p>Luis G</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/overlapped-bar-chart-longer-bars-in-back/comment-page-1/#comment-21064</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Mon, 26 Oct 2009 11:49:01 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=640#comment-21064</guid>
		<description>Karan asked how to get the taller-bar-behind-shorter bar effect if there are more than two series. Essentially it&#039;s the same, but you need several extra series. Here is one way to approach it.

Add some columns to the data:

&lt;p align=center&gt;&lt;img src=&quot;/images/2009-10/ThreeBarsData.png&quot; /&gt;&lt;/p&gt;

The formulas in E2 through H2 are

&lt;tt class=&quot;tt&quot;&gt;=IF(OR(B2&lt;C2,B2&lt;D2),B2,0)&lt;/tt&gt;

&lt;tt class=&quot;tt&quot;&gt;=IF(C2&lt;D2,C2,0)&lt;/tt&gt;

&lt;tt class=&quot;tt&quot;&gt;=IF(AND(D2&lt;B2,D2&lt;C2),D2,0)&lt;/tt&gt;

&lt;tt class=&quot;tt&quot;&gt;=IF(AND(B2&lt;C2,B2&lt;D2),B2,0)&lt;/tt&gt;

Here is the chart, not fully overlapped:

&lt;p align=center&gt;&lt;img src=&quot;/images/2009-10/ThreeBars1.png&quot; /&gt;&lt;/p&gt;

And here is the chart, with fully overlapped bars:

&lt;p align=center&gt;&lt;img src=&quot;/images/2009-10/ThreeBars2.png&quot; /&gt;&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Karan asked how to get the taller-bar-behind-shorter bar effect if there are more than two series. Essentially it&#8217;s the same, but you need several extra series. Here is one way to approach it.</p>
<p>Add some columns to the data:</p>
<p align=center><img src="/images/2009-10/ThreeBarsData.png" /></p>
<p>The formulas in E2 through H2 are</p>
<p><tt class="tt">=IF(OR(B2&lt;C2,B2&lt;D2),B2,0)</tt></p>
<p><tt class="tt">=IF(C2&lt;D2,C2,0)</tt></p>
<p><tt class="tt">=IF(AND(D2&lt;B2,D2&lt;C2),D2,0)</tt></p>
<p><tt class="tt">=IF(AND(B2&lt;C2,B2&lt;D2),B2,0)</tt></p>
<p>Here is the chart, not fully overlapped:</p>
<p align=center><img src="/images/2009-10/ThreeBars1.png" /></p>
<p>And here is the chart, with fully overlapped bars:</p>
<p align=center><img src="/images/2009-10/ThreeBars2.png" /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/overlapped-bar-chart-longer-bars-in-back/comment-page-1/#comment-19218</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Thu, 17 Sep 2009 03:22:59 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=640#comment-19218</guid>
		<description>Ken -

You can&#039;t interweave two series in that manner. A series can be either completely in front of or completely behind another series.</description>
		<content:encoded><![CDATA[<p>Ken -</p>
<p>You can&#8217;t interweave two series in that manner. A series can be either completely in front of or completely behind another series.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

