<?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 Value</title>
	<atom:link href="http://peltiertech.com/WordPress/vba-conditional-formatting-of-charts-by-value/feed/" rel="self" type="application/rss+xml" />
	<link>http://peltiertech.com/WordPress/vba-conditional-formatting-of-charts-by-value/</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: Gjergji Spaho</title>
		<link>http://peltiertech.com/WordPress/vba-conditional-formatting-of-charts-by-value/comment-page-1/#comment-177949</link>
		<dc:creator>Gjergji Spaho</dc:creator>
		<pubDate>Tue, 31 Jan 2012 09:15:09 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/2008/03/03/vba-conditional-formatting-of-charts-by-value/#comment-177949</guid>
		<description>Hi John,
there is no particular importance from the usage point of view.
I came across it while experimenting formatting the chart with the VBA code and it was the only way I found to reset it to the initial state.

I was wondering if there was a way to circumvent it.

thanks, for your help and reply
best regards, Gjergji</description>
		<content:encoded><![CDATA[<p>Hi John,<br />
there is no particular importance from the usage point of view.<br />
I came across it while experimenting formatting the chart with the VBA code and it was the only way I found to reset it to the initial state.</p>
<p>I was wondering if there was a way to circumvent it.</p>
<p>thanks, for your help and reply<br />
best regards, Gjergji</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/vba-conditional-formatting-of-charts-by-value/comment-page-1/#comment-177771</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Mon, 30 Jan 2012 17:25:04 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/2008/03/03/vba-conditional-formatting-of-charts-by-value/#comment-177771</guid>
		<description>Gjergji -

That&#039;s strange, somehow the Reset to Match Style must lock the chart formatting. I&#039;ve never used this feature, since there&#039;s no style I particularly want to match.

What are you using this for? Could you do the style matching manually, so the chart&#039;s formatting isn&#039;t locked?</description>
		<content:encoded><![CDATA[<p>Gjergji -</p>
<p>That&#8217;s strange, somehow the Reset to Match Style must lock the chart formatting. I&#8217;ve never used this feature, since there&#8217;s no style I particularly want to match.</p>
<p>What are you using this for? Could you do the style matching manually, so the chart&#8217;s formatting isn&#8217;t locked?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gjergji Spaho</title>
		<link>http://peltiertech.com/WordPress/vba-conditional-formatting-of-charts-by-value/comment-page-1/#comment-177759</link>
		<dc:creator>Gjergji Spaho</dc:creator>
		<pubDate>Mon, 30 Jan 2012 16:53:51 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/2008/03/03/vba-conditional-formatting-of-charts-by-value/#comment-177759</guid>
		<description>Hi,
I found the article of great help.

However I&#039;m having trouble with the Reset To Match Style command; once you have clicked over the chart then the VBA code does not affect the chart anymore.

The only workaround is to select manually a series, bring up the Formatting popup and change anything in there - then again the code works but only for the series I changed something.

I&#039;m using Office 2010; any suggestion would be of a great help.

thanks, Gjergji</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I found the article of great help.</p>
<p>However I&#8217;m having trouble with the Reset To Match Style command; once you have clicked over the chart then the VBA code does not affect the chart anymore.</p>
<p>The only workaround is to select manually a series, bring up the Formatting popup and change anything in there &#8211; then again the code works but only for the series I changed something.</p>
<p>I&#8217;m using Office 2010; any suggestion would be of a great help.</p>
<p>thanks, Gjergji</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julie</title>
		<link>http://peltiertech.com/WordPress/vba-conditional-formatting-of-charts-by-value/comment-page-1/#comment-172360</link>
		<dc:creator>Julie</dc:creator>
		<pubDate>Tue, 10 Jan 2012 23:24:18 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/2008/03/03/vba-conditional-formatting-of-charts-by-value/#comment-172360</guid>
		<description>This has been a tremendous help!  The only question I have is when I have two charts on the page it changes both of them - is there a way around this?  (I&#039;ve modified the stuff Vincent worked on with you).  
Sub AdjustChartColor()
&#039; Macro created on 2010-04-19 by Vincent
&#039; with help from Jon Peltier: http://www.peltiertech.com

Dim cObject As ChartObject
Dim iPoint As Long
Dim vValues As Variant

For Each cObject In ActiveSheet.ChartObjects
With cObject.Chart.SeriesCollection(1)
vValues = .Values
For iPoint = 1 To UBound(vValues)
If vValues(iPoint) &gt; 50 Then
.Points(iPoint).Fill.ForeColor.SchemeColor = 2
Else
.Points(iPoint).Fill.ForeColor.SchemeColor = 6
End If
Next
End With
Next
End Sub</description>
		<content:encoded><![CDATA[<p>This has been a tremendous help!  The only question I have is when I have two charts on the page it changes both of them &#8211; is there a way around this?  (I&#8217;ve modified the stuff Vincent worked on with you).<br />
Sub AdjustChartColor()<br />
&#8216; Macro created on 2010-04-19 by Vincent<br />
&#8216; with help from Jon Peltier: <a href="http://www.peltiertech.com" rel="nofollow">http://www.peltiertech.com</a></p>
<p>Dim cObject As ChartObject<br />
Dim iPoint As Long<br />
Dim vValues As Variant</p>
<p>For Each cObject In ActiveSheet.ChartObjects<br />
With cObject.Chart.SeriesCollection(1)<br />
vValues = .Values<br />
For iPoint = 1 To UBound(vValues)<br />
If vValues(iPoint) &gt; 50 Then<br />
.Points(iPoint).Fill.ForeColor.SchemeColor = 2<br />
Else<br />
.Points(iPoint).Fill.ForeColor.SchemeColor = 6<br />
End If<br />
Next<br />
End With<br />
Next<br />
End Sub</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sekiya-Nanny</title>
		<link>http://peltiertech.com/WordPress/vba-conditional-formatting-of-charts-by-value/comment-page-1/#comment-164513</link>
		<dc:creator>Sekiya-Nanny</dc:creator>
		<pubDate>Fri, 16 Dec 2011 05:44:50 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/2008/03/03/vba-conditional-formatting-of-charts-by-value/#comment-164513</guid>
		<description>Thank you so much for these fantastic ideas. 

Sekiya-Nanny</description>
		<content:encoded><![CDATA[<p>Thank you so much for these fantastic ideas. </p>
<p>Sekiya-Nanny</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mikhail</title>
		<link>http://peltiertech.com/WordPress/vba-conditional-formatting-of-charts-by-value/comment-page-1/#comment-122332</link>
		<dc:creator>Mikhail</dc:creator>
		<pubDate>Sun, 21 Aug 2011 06:32:48 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/2008/03/03/vba-conditional-formatting-of-charts-by-value/#comment-122332</guid>
		<description>Hi John,

I have similar question about formatting the graph. If you would help me with that I would greatly appreciate it.

I have a sheet that contains 3 columns and 20 rows. First column contains the text in each cell (company names). The second and third columns contain numbers related to the company name in the first column. I would like to assign each name its specific colour, so when I change the data, the VB recognizes the company name and changes the colour of the first and second points (which are in the 1st and 2nd columns) on the graph.

Could you, please point me into the right direction?

Thank you in advance!</description>
		<content:encoded><![CDATA[<p>Hi John,</p>
<p>I have similar question about formatting the graph. If you would help me with that I would greatly appreciate it.</p>
<p>I have a sheet that contains 3 columns and 20 rows. First column contains the text in each cell (company names). The second and third columns contain numbers related to the company name in the first column. I would like to assign each name its specific colour, so when I change the data, the VB recognizes the company name and changes the colour of the first and second points (which are in the 1st and 2nd columns) on the graph.</p>
<p>Could you, please point me into the right direction?</p>
<p>Thank you in advance!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

