<?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: VBA Conditional Formatting of Charts by Series Name</title>
	<atom:link href="http://peltiertech.com/WordPress/vba-conditional-formatting-of-charts-by-series-name/feed/" rel="self" type="application/rss+xml" />
	<link>http://peltiertech.com/WordPress/vba-conditional-formatting-of-charts-by-series-name/</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: Joel Lahrman</title>
		<link>http://peltiertech.com/WordPress/vba-conditional-formatting-of-charts-by-series-name/comment-page-1/#comment-21593</link>
		<dc:creator>Joel Lahrman</dc:creator>
		<pubDate>Tue, 03 Nov 2009 02:36:40 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/2008/03/03/vba-conditional-formatting-of-charts-by-series-name/#comment-21593</guid>
		<description>Thanks so much again!</description>
		<content:encoded><![CDATA[<p>Thanks so much again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/vba-conditional-formatting-of-charts-by-series-name/comment-page-1/#comment-20633</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Fri, 16 Oct 2009 20:51:51 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/2008/03/03/vba-conditional-formatting-of-charts-by-series-name/#comment-20633</guid>
		<description>Joel -

Color the font in the cells the color you want the label text to be. Then right after this line:

&lt;pre class=&quot;vbasmall&quot;&gt;        .SeriesCollection(iSeries).Interior.ColorIndex = _
            rSeries.Interior.ColorIndex&lt;/pre&gt;

insert this:

&lt;pre class=&quot;vbasmall&quot;&gt;        .SeriesCollection(iSeries).DataLabels.Font.ColorIndex = _
            rSeries.Font.ColorIndex&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Joel -</p>
<p>Color the font in the cells the color you want the label text to be. Then right after this line:</p>
<pre class="vbasmall">        .SeriesCollection(iSeries).Interior.ColorIndex = _
            rSeries.Interior.ColorIndex</pre>
<p>insert this:</p>
<pre class="vbasmall">        .SeriesCollection(iSeries).DataLabels.Font.ColorIndex = _
            rSeries.Font.ColorIndex</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joel Lahrman</title>
		<link>http://peltiertech.com/WordPress/vba-conditional-formatting-of-charts-by-series-name/comment-page-1/#comment-20628</link>
		<dc:creator>Joel Lahrman</dc:creator>
		<pubDate>Fri, 16 Oct 2009 17:43:42 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/2008/03/03/vba-conditional-formatting-of-charts-by-series-name/#comment-20628</guid>
		<description>Jon, just found the code you listed above and it has been a TREMENDOUS help, thanks.

I&#039;m looking through the conversation and I don&#039;t believe the following question has been asked...

In addition to changing the colors of the interiors of the bars in my chart, I&#039;d like it to be able to change the color of the label font as well.  I&#039;m putting the labels at the base of the bars.  One of my bars is set to show up black, so obviously a label with black font won&#039;t show.  I&#039;m tried variations in my code to get it to pick up the font color in addition to the background color in my rPatterns range, but so far no luck.

Any ideas on this?  Thanks much, I&#039;m far from a programmer myself but am pretty good at adapting code.</description>
		<content:encoded><![CDATA[<p>Jon, just found the code you listed above and it has been a TREMENDOUS help, thanks.</p>
<p>I&#8217;m looking through the conversation and I don&#8217;t believe the following question has been asked&#8230;</p>
<p>In addition to changing the colors of the interiors of the bars in my chart, I&#8217;d like it to be able to change the color of the label font as well.  I&#8217;m putting the labels at the base of the bars.  One of my bars is set to show up black, so obviously a label with black font won&#8217;t show.  I&#8217;m tried variations in my code to get it to pick up the font color in addition to the background color in my rPatterns range, but so far no luck.</p>
<p>Any ideas on this?  Thanks much, I&#8217;m far from a programmer myself but am pretty good at adapting code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/vba-conditional-formatting-of-charts-by-series-name/comment-page-1/#comment-18549</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Mon, 31 Aug 2009 11:13:31 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/2008/03/03/vba-conditional-formatting-of-charts-by-series-name/#comment-18549</guid>
		<description>Follow up. 

Paresh has sent me a chart offline which he constructed by formatting one series, then selecting it, copying it using Ctrl+C, and pasting it using Ctrl+V. This functionality is new in Excel 2007, and is applicable to more than just one series. It seems if you copy any other chart element besides a single series, pasting duplicates all series in the chart. 

Similar behavior exists in 2003: copy the chart area of a chart, select the same or a different chart, and paste to adds the data of the copied chart to the active chart. I had never noticed this in 2007: if it&#039;s a feature it&#039;s a useful one. If it&#039;s a bug, it&#039;s still a useful one.</description>
		<content:encoded><![CDATA[<p>Follow up. </p>
<p>Paresh has sent me a chart offline which he constructed by formatting one series, then selecting it, copying it using Ctrl+C, and pasting it using Ctrl+V. This functionality is new in Excel 2007, and is applicable to more than just one series. It seems if you copy any other chart element besides a single series, pasting duplicates all series in the chart. </p>
<p>Similar behavior exists in 2003: copy the chart area of a chart, select the same or a different chart, and paste to adds the data of the copied chart to the active chart. I had never noticed this in 2007: if it&#8217;s a feature it&#8217;s a useful one. If it&#8217;s a bug, it&#8217;s still a useful one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/vba-conditional-formatting-of-charts-by-series-name/comment-page-1/#comment-18528</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Sun, 30 Aug 2009 21:01:06 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/2008/03/03/vba-conditional-formatting-of-charts-by-series-name/#comment-18528</guid>
		<description>Paresh - How do you accomplish steps 3 and 4? You can&#039;t select a series and copy it.</description>
		<content:encoded><![CDATA[<p>Paresh &#8211; How do you accomplish steps 3 and 4? You can&#8217;t select a series and copy it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/vba-conditional-formatting-of-charts-by-series-name/comment-page-1/#comment-18527</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Sun, 30 Aug 2009 20:58:30 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/2008/03/03/vba-conditional-formatting-of-charts-by-series-name/#comment-18527</guid>
		<description>The F4 approach isn&#039;t too tedious. Start with series 1, format it, click the up arrow to select series 2, click F4, repeat up arrow and F4 as required.

If you want to use  a template, you need to format as many series as you will need. not just five.</description>
		<content:encoded><![CDATA[<p>The F4 approach isn&#8217;t too tedious. Start with series 1, format it, click the up arrow to select series 2, click F4, repeat up arrow and F4 as required.</p>
<p>If you want to use  a template, you need to format as many series as you will need. not just five.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: paresh</title>
		<link>http://peltiertech.com/WordPress/vba-conditional-formatting-of-charts-by-series-name/comment-page-1/#comment-18524</link>
		<dc:creator>paresh</dc:creator>
		<pubDate>Sun, 30 Aug 2009 16:54:34 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/2008/03/03/vba-conditional-formatting-of-charts-by-series-name/#comment-18524</guid>
		<description>Hi Jon

Continued my research on the subject and this is what I discovered;

a. maximum number of series in a chart is 255. This will seriously limit the use of parallel coordinates in excel as one would expect analysing hundreds of items at one time.

b. An easy way to create a line chart with one color is ;
1. create a line chart with one series
2. modify the line as per requirements; color, thickness.
3. Copy the series in the chart using control c
4. paste it as many times as you want using contol v [ the 255 limit will apply]
5. save the chart as template

In the future whenever you draw a chart you can change the chart type to the saved template -- you will have a line chart with one color.

If the limit was not there, one could have visualised the use of parallel coordinates in excel with incredible scope using the filter functionality.

Anyway time for an article on phd on chart templates.</description>
		<content:encoded><![CDATA[<p>Hi Jon</p>
<p>Continued my research on the subject and this is what I discovered;</p>
<p>a. maximum number of series in a chart is 255. This will seriously limit the use of parallel coordinates in excel as one would expect analysing hundreds of items at one time.</p>
<p>b. An easy way to create a line chart with one color is ;<br />
1. create a line chart with one series<br />
2. modify the line as per requirements; color, thickness.<br />
3. Copy the series in the chart using control c<br />
4. paste it as many times as you want using contol v [ the 255 limit will apply]<br />
5. save the chart as template</p>
<p>In the future whenever you draw a chart you can change the chart type to the saved template &#8212; you will have a line chart with one color.</p>
<p>If the limit was not there, one could have visualised the use of parallel coordinates in excel with incredible scope using the filter functionality.</p>
<p>Anyway time for an article on phd on chart templates.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: paresh</title>
		<link>http://peltiertech.com/WordPress/vba-conditional-formatting-of-charts-by-series-name/comment-page-1/#comment-18478</link>
		<dc:creator>paresh</dc:creator>
		<pubDate>Sat, 29 Aug 2009 16:46:12 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/2008/03/03/vba-conditional-formatting-of-charts-by-series-name/#comment-18478</guid>
		<description>Hi Jon,

Thanks. 


But a parallel coordinate chart would have a large number of line and changing it one by one using F4 key would be tedious. Maybe the only alternative [ apart from using VBA ] is to use the first option in chart styles which give monchromatic graphs. Another alternative I have tried is to create chart template where say five lines have the same color and tried to use it for the new chart - works but only for five series for the sixth the color comes again.

paresh</description>
		<content:encoded><![CDATA[<p>Hi Jon,</p>
<p>Thanks. </p>
<p>But a parallel coordinate chart would have a large number of line and changing it one by one using F4 key would be tedious. Maybe the only alternative [ apart from using VBA ] is to use the first option in chart styles which give monchromatic graphs. Another alternative I have tried is to create chart template where say five lines have the same color and tried to use it for the new chart &#8211; works but only for five series for the sixth the color comes again.</p>
<p>paresh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/vba-conditional-formatting-of-charts-by-series-name/comment-page-1/#comment-18423</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Fri, 28 Aug 2009 14:02:38 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/2008/03/03/vba-conditional-formatting-of-charts-by-series-name/#comment-18423</guid>
		<description>Hi Paresh -

You can&#039;t format the lines all at once. You can format one, then select the next, and press the F4 shortcut key (&quot;Repeat Last Action&quot;). This works nicely in 2003, repeating all changes from the trip to the formatting dialog. In 2007 it repeats at most the last one action (like line color or marker type), and sometimes none at all.</description>
		<content:encoded><![CDATA[<p>Hi Paresh -</p>
<p>You can&#8217;t format the lines all at once. You can format one, then select the next, and press the F4 shortcut key (&#8221;Repeat Last Action&#8221;). This works nicely in 2003, repeating all changes from the trip to the formatting dialog. In 2007 it repeats at most the last one action (like line color or marker type), and sometimes none at all.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: paresh</title>
		<link>http://peltiertech.com/WordPress/vba-conditional-formatting-of-charts-by-series-name/comment-page-1/#comment-18389</link>
		<dc:creator>paresh</dc:creator>
		<pubDate>Thu, 27 Aug 2009 21:40:06 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/2008/03/03/vba-conditional-formatting-of-charts-by-series-name/#comment-18389</guid>
		<description>Hi Jon,

Was going through your articles on parallel coordinates. In that article you  mentioned that you formatted all the lines to light grey. Did you format this line by line or is there a way to format all lines at one time - Would like to avoid VBA if possible.

paresh</description>
		<content:encoded><![CDATA[<p>Hi Jon,</p>
<p>Was going through your articles on parallel coordinates. In that article you  mentioned that you formatted all the lines to light grey. Did you format this line by line or is there a way to format all lines at one time &#8211; Would like to avoid VBA if possible.</p>
<p>paresh</p>
]]></content:encoded>
	</item>
</channel>
</rss>
