<?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: Changes to Charting in Excel 2007</title>
	<atom:link href="http://peltiertech.com/WordPress/changes-to-charting-in-excel-2007/feed/" rel="self" type="application/rss+xml" />
	<link>http://peltiertech.com/WordPress/changes-to-charting-in-excel-2007/</link>
	<description>Peltier Tech Excel Charts and Programming Blog</description>
	<lastBuildDate>Fri, 10 Feb 2012 07:51: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: Hervé</title>
		<link>http://peltiertech.com/WordPress/changes-to-charting-in-excel-2007/comment-page-3/#comment-170689</link>
		<dc:creator>Hervé</dc:creator>
		<pubDate>Thu, 05 Jan 2012 13:03:39 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=56#comment-170689</guid>
		<description>Hi Bob,

I am not an expert but I am controling the maximum scale of my charts by using the following sub : 

Sub change_charts()

&#039; X axis 

ActiveSheet.ChartObjects(&quot;your_chart_name&quot;).Chart.Axes(xlCategory) _
            .MinimumScale = ActiveSheet.Range(&quot;B85&quot;).Value
ActiveSheet.ChartObjects(&quot;your_chart_name&quot;).Chart.Axes(xlCategory) _
            .MaximumScale = ActiveSheet.Range(&quot;B86&quot;).Value
ActiveSheet.ChartObjects(&quot;your_chart_name&quot;).Chart.Axes(xlCategory) _
            .MajorUnit = ActiveSheet.Range(&quot;B87&quot;).Value
ActiveSheet.ChartObjects(&quot;your_chart_name&quot;).Chart.Axes(xlCategory) _
            .MinorUnit = ActiveSheet.Range(&quot;B88&quot;).Value

&#039; Y Axis - chart_head

ActiveSheet.ChartObjects(&quot;your_chart_name&quot;).Chart.Axes(xlValue) _
            .MinimumScale = ActiveSheet.Range(&quot;C85&quot;).Value
ActiveSheet.ChartObjects(&quot;your_chart_name&quot;).Chart.Axes(xlValue) _
            .MaximumScale = ActiveSheet.Range(&quot;C86&quot;).Value
ActiveSheet.ChartObjects(&quot;your_chart_name&quot;).Chart.Axes(xlValue) _
            .MajorUnit = ActiveSheet.Range(&quot;C88&quot;).Value
ActiveSheet.ChartObjects(&quot;your_chart_name&quot;).Chart.Axes(xlValue) _
            .MinorUnit = ActiveSheet.Range(&quot;C88&quot;).Value

End Sub</description>
		<content:encoded><![CDATA[<p>Hi Bob,</p>
<p>I am not an expert but I am controling the maximum scale of my charts by using the following sub : </p>
<p>Sub change_charts()</p>
<p>&#8216; X axis </p>
<p>ActiveSheet.ChartObjects(&#8220;your_chart_name&#8221;).Chart.Axes(xlCategory) _<br />
            .MinimumScale = ActiveSheet.Range(&#8220;B85&#8243;).Value<br />
ActiveSheet.ChartObjects(&#8220;your_chart_name&#8221;).Chart.Axes(xlCategory) _<br />
            .MaximumScale = ActiveSheet.Range(&#8220;B86&#8243;).Value<br />
ActiveSheet.ChartObjects(&#8220;your_chart_name&#8221;).Chart.Axes(xlCategory) _<br />
            .MajorUnit = ActiveSheet.Range(&#8220;B87&#8243;).Value<br />
ActiveSheet.ChartObjects(&#8220;your_chart_name&#8221;).Chart.Axes(xlCategory) _<br />
            .MinorUnit = ActiveSheet.Range(&#8220;B88&#8243;).Value</p>
<p>&#8216; Y Axis &#8211; chart_head</p>
<p>ActiveSheet.ChartObjects(&#8220;your_chart_name&#8221;).Chart.Axes(xlValue) _<br />
            .MinimumScale = ActiveSheet.Range(&#8220;C85&#8243;).Value<br />
ActiveSheet.ChartObjects(&#8220;your_chart_name&#8221;).Chart.Axes(xlValue) _<br />
            .MaximumScale = ActiveSheet.Range(&#8220;C86&#8243;).Value<br />
ActiveSheet.ChartObjects(&#8220;your_chart_name&#8221;).Chart.Axes(xlValue) _<br />
            .MajorUnit = ActiveSheet.Range(&#8220;C88&#8243;).Value<br />
ActiveSheet.ChartObjects(&#8220;your_chart_name&#8221;).Chart.Axes(xlValue) _<br />
            .MinorUnit = ActiveSheet.Range(&#8220;C88&#8243;).Value</p>
<p>End Sub</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob Norris</title>
		<link>http://peltiertech.com/WordPress/changes-to-charting-in-excel-2007/comment-page-3/#comment-170508</link>
		<dc:creator>Bob Norris</dc:creator>
		<pubDate>Thu, 05 Jan 2012 01:04:17 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=56#comment-170508</guid>
		<description>I have spreadsheet developed in Excel 2003 where I look at monthly comparison of data through graphs (there are 36 of them on the same sheet), and I like each graph to have the same vertical scale for visual comparison of range as well as pattern (or shape). When I import new source data , the vertical scale of the old graphs is always inappropriate to the new data. In Excel 2003 I manually updated the scale in one graph to suit the new data, I then selected (in sequence) the scale of the next graph, a quick CtrlY and the scale update was repeated.  This process took a couple of minutes to update all 36 charts.  It is very frustrating that the repeat last command function does not work on chart axes in Excel 2007.  
The process is very laborious and tedious in changing the scale of every chart through the dailogue box.  

Is there a way in which a cell value can be used to set the maximum scale of an axis?</description>
		<content:encoded><![CDATA[<p>I have spreadsheet developed in Excel 2003 where I look at monthly comparison of data through graphs (there are 36 of them on the same sheet), and I like each graph to have the same vertical scale for visual comparison of range as well as pattern (or shape). When I import new source data , the vertical scale of the old graphs is always inappropriate to the new data. In Excel 2003 I manually updated the scale in one graph to suit the new data, I then selected (in sequence) the scale of the next graph, a quick CtrlY and the scale update was repeated.  This process took a couple of minutes to update all 36 charts.  It is very frustrating that the repeat last command function does not work on chart axes in Excel 2007.<br />
The process is very laborious and tedious in changing the scale of every chart through the dailogue box.  </p>
<p>Is there a way in which a cell value can be used to set the maximum scale of an axis?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/changes-to-charting-in-excel-2007/comment-page-3/#comment-163165</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Sun, 11 Dec 2011 15:25:35 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=56#comment-163165</guid>
		<description>Hi Liz -

As far as I can tell, the default to create a chart as an embedded chart in the active sheet cannot be changed. FWIW, I almost always (&gt;99%) want charts embedded in the worksheet. In my experience, most people want embedded charts most of the time, and I think Microsoft must have measured this with their Customer Feedback Program.

This tendency not to make chart sheets is especially true since Excel 2007 broke the ability for chart sheets to resize to fit the Excel window.

Of course, if you select your data and click the F11 function key, Excel will insert a new chart sheet with the default chart type. So you could change the default to whatever chart type you generally use.</description>
		<content:encoded><![CDATA[<p>Hi Liz -</p>
<p>As far as I can tell, the default to create a chart as an embedded chart in the active sheet cannot be changed. FWIW, I almost always (&gt;99%) want charts embedded in the worksheet. In my experience, most people want embedded charts most of the time, and I think Microsoft must have measured this with their Customer Feedback Program.</p>
<p>This tendency not to make chart sheets is especially true since Excel 2007 broke the ability for chart sheets to resize to fit the Excel window.</p>
<p>Of course, if you select your data and click the F11 function key, Excel will insert a new chart sheet with the default chart type. So you could change the default to whatever chart type you generally use.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Liz Heath</title>
		<link>http://peltiertech.com/WordPress/changes-to-charting-in-excel-2007/comment-page-2/#comment-162909</link>
		<dc:creator>Liz Heath</dc:creator>
		<pubDate>Sat, 10 Dec 2011 20:34:35 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=56#comment-162909</guid>
		<description>Having recently (and belatedly) moved to 2007, I&#039;m increasingly frustrated at many of the changes which require additional steps. But I&#039;m absolutely flummoxed at trying to figure out how to change the default location of charts when they are created. I do NOT want it on the worksheet. I cannot think of an instance in 15 years where I have wanted to put a chart on the worksheet. Is there anyway to change that default location so I don&#039;t have to do the additional steps of moving it each time?</description>
		<content:encoded><![CDATA[<p>Having recently (and belatedly) moved to 2007, I&#8217;m increasingly frustrated at many of the changes which require additional steps. But I&#8217;m absolutely flummoxed at trying to figure out how to change the default location of charts when they are created. I do NOT want it on the worksheet. I cannot think of an instance in 15 years where I have wanted to put a chart on the worksheet. Is there anyway to change that default location so I don&#8217;t have to do the additional steps of moving it each time?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/changes-to-charting-in-excel-2007/comment-page-2/#comment-153975</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Tue, 15 Nov 2011 13:18:15 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=56#comment-153975</guid>
		<description>Hi Hervé -

This means not too complicated for you to build, but more complicated for Excel 2007&#039;s ability to convert. I have no firm definition, but you&#039;ll know it when you encounter it.</description>
		<content:encoded><![CDATA[<p>Hi Hervé -</p>
<p>This means not too complicated for you to build, but more complicated for Excel 2007&#8242;s ability to convert. I have no firm definition, but you&#8217;ll know it when you encounter it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hervé</title>
		<link>http://peltiertech.com/WordPress/changes-to-charting-in-excel-2007/comment-page-2/#comment-153952</link>
		<dc:creator>Hervé</dc:creator>
		<pubDate>Tue, 15 Nov 2011 12:23:24 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=56#comment-153952</guid>
		<description>Hi Jon,

thanks for the answer. What do you mean by a &quot;too complicated chart&quot; ?</description>
		<content:encoded><![CDATA[<p>Hi Jon,</p>
<p>thanks for the answer. What do you mean by a &#8220;too complicated chart&#8221; ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

