<?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: Label Each Series in a Chart</title>
	<atom:link href="http://peltiertech.com/WordPress/label-each-series-in-a-chart/feed/" rel="self" type="application/rss+xml" />
	<link>http://peltiertech.com/WordPress/label-each-series-in-a-chart/</link>
	<description>Peltier Tech Excel Charts and Programming Blog</description>
	<lastBuildDate>Wed, 23 May 2012 03:01:10 +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: Brian Murphy</title>
		<link>http://peltiertech.com/WordPress/label-each-series-in-a-chart/comment-page-1/#comment-201266</link>
		<dc:creator>Brian Murphy</dc:creator>
		<pubDate>Tue, 27 Mar 2012 13:46:14 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=714#comment-201266</guid>
		<description>I&#039;m also finding that excel 2010 does not have this problem with datalabel positions!  In fact, excel 2010 runs my chart intensive macros way faster than excel 2007.  Not as fast as excel 2003, but close.  Excel 2010 does choke badly, though, when putting data point symbols on just 10 or 20 points of a series with a few thousand points (i.e. sparse symbols).

Brian</description>
		<content:encoded><![CDATA[<p>I&#8217;m also finding that excel 2010 does not have this problem with datalabel positions!  In fact, excel 2010 runs my chart intensive macros way faster than excel 2007.  Not as fast as excel 2003, but close.  Excel 2010 does choke badly, though, when putting data point symbols on just 10 or 20 points of a series with a few thousand points (i.e. sparse symbols).</p>
<p>Brian</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/label-each-series-in-a-chart/comment-page-1/#comment-201262</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Tue, 27 Mar 2012 13:29:33 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=714#comment-201262</guid>
		<description>Brian -

Yeah, so much of 2007&#039;s chart system is undercooked.

I&#039;ve had lots of issues with labeling in 2007. Some of the issues are avoided by inserting DoEvents here and there. Selecting labels makes them somewhat more reliable, and I think there are other tricks. Unfortunately, most measures that improve reliability also make your code run excruciatingly slowly. I&#039;ve even had to insert a progress bar dialog so the user sees that the code is still running.</description>
		<content:encoded><![CDATA[<p>Brian -</p>
<p>Yeah, so much of 2007&#8242;s chart system is undercooked.</p>
<p>I&#8217;ve had lots of issues with labeling in 2007. Some of the issues are avoided by inserting DoEvents here and there. Selecting labels makes them somewhat more reliable, and I think there are other tricks. Unfortunately, most measures that improve reliability also make your code run excruciatingly slowly. I&#8217;ve even had to insert a progress bar dialog so the user sees that the code is still running.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Murphy</title>
		<link>http://peltiertech.com/WordPress/label-each-series-in-a-chart/comment-page-1/#comment-201221</link>
		<dc:creator>Brian Murphy</dc:creator>
		<pubDate>Tue, 27 Mar 2012 11:39:43 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=714#comment-201221</guid>
		<description>It&#039;s been my experience that in an xy scatter chart

With .Points(iLabel).DataLabel
     .Top = somenumber

can cause a r/t error in excel 2007 unless the datalabel is first .Selected

Has this ever happened to you?  The errors I get are the .Top method fails or else overflow.  Sometimes going into Debug at the error and pressing F5 continues anyway.  Simply .Selecting the datalabel first seems to eliminate the problem.

Brian Murphy</description>
		<content:encoded><![CDATA[<p>It&#8217;s been my experience that in an xy scatter chart</p>
<p>With .Points(iLabel).DataLabel<br />
     .Top = somenumber</p>
<p>can cause a r/t error in excel 2007 unless the datalabel is first .Selected</p>
<p>Has this ever happened to you?  The errors I get are the .Top method fails or else overflow.  Sometimes going into Debug at the error and pressing F5 continues anyway.  Simply .Selecting the datalabel first seems to eliminate the problem.</p>
<p>Brian Murphy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Weir</title>
		<link>http://peltiertech.com/WordPress/label-each-series-in-a-chart/comment-page-1/#comment-193796</link>
		<dc:creator>Jeff Weir</dc:creator>
		<pubDate>Tue, 13 Mar 2012 20:37:33 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=714#comment-193796</guid>
		<description>Things should be as simple as possible, no simpler.
Neil, in my humble opinion, your solution is simple. Jon&#039;s is elegant. AND simple. 

Amature VBA people might learn some valuabale lessons from Jon&#039;s code, such as writing simple code that doesn&#039;t have things hard-coded. Your code only works on a chart called DoughnutChart sitting in a worksheet called PowerpointTableTemplates with 4 data series. 

While your code works fine under these limits, Jon&#039;s handles any, and is more visually appealing to boot...his code centres the labels perfectly right smack in the middle of each series.

Your statement &lt;i&gt;&quot;My solution is simpler to understand for amateur VBA people such as myself, thats what i meant by ‘simple’.&quot; &lt;/i&gt; I interpret as &lt;i&gt; My solution is simpler &lt;em&gt;[for me] &lt;/em&gt; to understand , thats what i meant by ‘simple’. &quot;&lt;/i&gt;</description>
		<content:encoded><![CDATA[<p>Things should be as simple as possible, no simpler.<br />
Neil, in my humble opinion, your solution is simple. Jon&#8217;s is elegant. AND simple. </p>
<p>Amature VBA people might learn some valuabale lessons from Jon&#8217;s code, such as writing simple code that doesn&#8217;t have things hard-coded. Your code only works on a chart called DoughnutChart sitting in a worksheet called PowerpointTableTemplates with 4 data series. </p>
<p>While your code works fine under these limits, Jon&#8217;s handles any, and is more visually appealing to boot&#8230;his code centres the labels perfectly right smack in the middle of each series.</p>
<p>Your statement <i>&#8220;My solution is simpler to understand for amateur VBA people such as myself, thats what i meant by ‘simple’.&#8221; </i> I interpret as <i> My solution is simpler <em>[for me] </em> to understand , thats what i meant by ‘simple’. &#8220;</i></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: neil clarke</title>
		<link>http://peltiertech.com/WordPress/label-each-series-in-a-chart/comment-page-1/#comment-193551</link>
		<dc:creator>neil clarke</dc:creator>
		<pubDate>Tue, 13 Mar 2012 09:57:20 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=714#comment-193551</guid>
		<description>My solution is simpler to understand for amateur VBA people such as myself, thats what i meant by &#039;simple&#039;.</description>
		<content:encoded><![CDATA[<p>My solution is simpler to understand for amateur VBA people such as myself, thats what i meant by &#8216;simple&#8217;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/label-each-series-in-a-chart/comment-page-1/#comment-193413</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Tue, 13 Mar 2012 03:09:53 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=714#comment-193413</guid>
		<description>Hmm, my method uses only a dozen or so lines of code, accommodates a variable number of data labels, does not require changing the chart type, and has no errors to debug. I&#039;d say it&#039;s pretty simple.</description>
		<content:encoded><![CDATA[<p>Hmm, my method uses only a dozen or so lines of code, accommodates a variable number of data labels, does not require changing the chart type, and has no errors to debug. I&#8217;d say it&#8217;s pretty simple.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

