<?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: Split Data Range into Multiple Chart Series without VBA</title>
	<atom:link href="http://peltiertech.com/WordPress/split-data-range-into-multiple-chart-series-without-vba/feed/" rel="self" type="application/rss+xml" />
	<link>http://peltiertech.com/WordPress/split-data-range-into-multiple-chart-series-without-vba/</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: Paul</title>
		<link>http://peltiertech.com/WordPress/split-data-range-into-multiple-chart-series-without-vba/comment-page-1/#comment-49503</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Mon, 22 Nov 2010 02:33:23 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=78#comment-49503</guid>
		<description>Thanks Jon.  Wise words.</description>
		<content:encoded><![CDATA[<p>Thanks Jon.  Wise words.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/split-data-range-into-multiple-chart-series-without-vba/comment-page-1/#comment-49454</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Sun, 21 Nov 2010 18:26:35 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=78#comment-49454</guid>
		<description>Paul -

Excel plots the data you give it. Trying to do something fancy like plotting multiple series from one data range sometimes can be done, but saving a few cells is usually not worth spending hours setting it up and more hours later fixing it when something changes. Add three ranges for three dummy series, and pat yourself on the back for being more clever in the long run.</description>
		<content:encoded><![CDATA[<p>Paul -</p>
<p>Excel plots the data you give it. Trying to do something fancy like plotting multiple series from one data range sometimes can be done, but saving a few cells is usually not worth spending hours setting it up and more hours later fixing it when something changes. Add three ranges for three dummy series, and pat yourself on the back for being more clever in the long run.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://peltiertech.com/WordPress/split-data-range-into-multiple-chart-series-without-vba/comment-page-1/#comment-49433</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Sun, 21 Nov 2010 16:33:39 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=78#comment-49433</guid>
		<description>Hi Jon
You&#039;ve been so helpful before, I am hoping for a innovative solution (using vba or not).  Im using Excel 2003.

I have an area chart (standard normal distribution) that looks like a bell curve.  I use dynamic ranges to break my data into 3 specific (variable) x-axis sections (e.g., 0-2,000, 2,000-7,000, 7,000-8,000), and would like to either distinctly shade these vertical sections of the curve, add 2 drop lines solely at 2,000 and 7,000, or somehow otherwise differentiate the 3 sections.

I know I can do this be creating 3 DUMMY data series from the original, based upon my dynamic ranges, but would prefer NOT to replicate 1 very large data column into 4.  I considered replicating the x-asis as a secondary axis and plotting the 2 points against that axis, but I&#039;ve not been successful creating the 2nd axis, and would prefer not to have to go this route in any event.

I&#039;ve trolled the web, and spent considerable time looking through your site in particular, but haven&#039;t found a solution.  Any insight you can provide will be appreciated.

Thanks in advance for your help.
-Paul</description>
		<content:encoded><![CDATA[<p>Hi Jon<br />
You&#8217;ve been so helpful before, I am hoping for a innovative solution (using vba or not).  Im using Excel 2003.</p>
<p>I have an area chart (standard normal distribution) that looks like a bell curve.  I use dynamic ranges to break my data into 3 specific (variable) x-axis sections (e.g., 0-2,000, 2,000-7,000, 7,000-8,000), and would like to either distinctly shade these vertical sections of the curve, add 2 drop lines solely at 2,000 and 7,000, or somehow otherwise differentiate the 3 sections.</p>
<p>I know I can do this be creating 3 DUMMY data series from the original, based upon my dynamic ranges, but would prefer NOT to replicate 1 very large data column into 4.  I considered replicating the x-asis as a secondary axis and plotting the 2 points against that axis, but I&#8217;ve not been successful creating the 2nd axis, and would prefer not to have to go this route in any event.</p>
<p>I&#8217;ve trolled the web, and spent considerable time looking through your site in particular, but haven&#8217;t found a solution.  Any insight you can provide will be appreciated.</p>
<p>Thanks in advance for your help.<br />
-Paul</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/split-data-range-into-multiple-chart-series-without-vba/comment-page-1/#comment-32050</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Wed, 28 Apr 2010 03:05:08 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=78#comment-32050</guid>
		<description>Change this

With ActiveChart.Legend.LegendEntries(4).LegendKey.Select
Selection.Border

to this

With ActiveChart.Legend.LegendEntries(4).LegendKey.Border

and try again.

But why are you using the legend key to format the series instead of the series itself?</description>
		<content:encoded><![CDATA[<p>Change this</p>
<p>With ActiveChart.Legend.LegendEntries(4).LegendKey.Select<br />
Selection.Border</p>
<p>to this</p>
<p>With ActiveChart.Legend.LegendEntries(4).LegendKey.Border</p>
<p>and try again.</p>
<p>But why are you using the legend key to format the series instead of the series itself?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://peltiertech.com/WordPress/split-data-range-into-multiple-chart-series-without-vba/comment-page-1/#comment-32010</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Tue, 27 Apr 2010 17:44:56 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=78#comment-32010</guid>
		<description>What I am really trying to solve with my if statement is say there are only three sereies but I want the code to check if there is a forth and if so modify it how I want.  So I tried the following but it won&#039;t work for some reason:

    If ActiveChart.Legend.HasLegendEntries(4) Then
    With ActiveChart.Legend.LegendEntries(4).LegendKey.Select
         Selection.Border
        .ColorIndex = 44
        .Weight = xlThin
        .LineStyle = xlContinuous
    End With
 End If


Which the first line was orgionally:

ActiveChart.Legend.LegendEntries(4).LegendKey.Select</description>
		<content:encoded><![CDATA[<p>What I am really trying to solve with my if statement is say there are only three sereies but I want the code to check if there is a forth and if so modify it how I want.  So I tried the following but it won&#8217;t work for some reason:</p>
<p>    If ActiveChart.Legend.HasLegendEntries(4) Then<br />
    With ActiveChart.Legend.LegendEntries(4).LegendKey.Select<br />
         Selection.Border<br />
        .ColorIndex = 44<br />
        .Weight = xlThin<br />
        .LineStyle = xlContinuous<br />
    End With<br />
 End If</p>
<p>Which the first line was orgionally:</p>
<p>ActiveChart.Legend.LegendEntries(4).LegendKey.Select</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/split-data-range-into-multiple-chart-series-without-vba/comment-page-1/#comment-31945</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Tue, 27 Apr 2010 03:00:55 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=78#comment-31945</guid>
		<description>You have to be careful with legend entries, as they don&#039;t always correspond with series the way you&#039;d expect.

Anyway, you have to check for the existence of the legend. If it exists, it certainly has one legend entry.

&lt;pre class=&quot;vbasmall&quot;&gt;&lt;code&gt;If ActiveChart.HasLegend Then
  With ActiveChart.Legend.LegendEntries(1).LegendKey
    .ColorIndex = 3
    .Weight = xlThin
    .LineStyle = xlContinuous
  End With
End If&lt;/code&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>You have to be careful with legend entries, as they don&#8217;t always correspond with series the way you&#8217;d expect.</p>
<p>Anyway, you have to check for the existence of the legend. If it exists, it certainly has one legend entry.</p>
<pre class="vbasmall"><code>If ActiveChart.HasLegend Then
  With ActiveChart.Legend.LegendEntries(1).LegendKey
    .ColorIndex = 3
    .Weight = xlThin
    .LineStyle = xlContinuous
  End With
End If</code></pre>
]]></content:encoded>
	</item>
</channel>
</rss>

