<?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: Dynamic Charts</title>
	<atom:link href="http://peltiertech.com/WordPress/dynamic-charts/feed/" rel="self" type="application/rss+xml" />
	<link>http://peltiertech.com/WordPress/dynamic-charts/</link>
	<description>Peltier Tech Excel Charts and Programming Blog</description>
	<lastBuildDate>Tue, 22 May 2012 11:00:35 +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: Thomas</title>
		<link>http://peltiertech.com/WordPress/dynamic-charts/comment-page-3/#comment-186878</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Mon, 27 Feb 2012 21:56:27 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=72#comment-186878</guid>
		<description>Hey Jon - 

Thanks for all the help. I apologize it took so long to get back to you. I have changed the scope to the formulas but the charts are still not dynamically updating. 

Any thoughts?

Thanks!</description>
		<content:encoded><![CDATA[<p>Hey Jon &#8211; </p>
<p>Thanks for all the help. I apologize it took so long to get back to you. I have changed the scope to the formulas but the charts are still not dynamically updating. </p>
<p>Any thoughts?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/dynamic-charts/comment-page-2/#comment-182734</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Thu, 16 Feb 2012 00:26:41 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=72#comment-182734</guid>
		<description>Thomas -

If the named ranges are scoped to the worksheet and not the workbook, chart formulas lose the names when they are copied and pasted on another sheet. I think even copying the whole sheet hoses the names. You&#039;ll have to fix the formulas.</description>
		<content:encoded><![CDATA[<p>Thomas -</p>
<p>If the named ranges are scoped to the worksheet and not the workbook, chart formulas lose the names when they are copied and pasted on another sheet. I think even copying the whole sheet hoses the names. You&#8217;ll have to fix the formulas.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas</title>
		<link>http://peltiertech.com/WordPress/dynamic-charts/comment-page-2/#comment-182711</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Wed, 15 Feb 2012 23:06:11 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=72#comment-182711</guid>
		<description>Another comment in regards to that:

The &quot;Series Values&quot; section of the &quot;Select data&quot; changes to [0].</description>
		<content:encoded><![CDATA[<p>Another comment in regards to that:</p>
<p>The &#8220;Series Values&#8221; section of the &#8220;Select data&#8221; changes to [0].</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas</title>
		<link>http://peltiertech.com/WordPress/dynamic-charts/comment-page-2/#comment-182710</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Wed, 15 Feb 2012 23:04:46 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=72#comment-182710</guid>
		<description>John -

Thanks for the help! The formula works a lot better...I do have one more question in regards to it...the question may have more to do with my office security settings then anything else but I wanted to ask anyway.

The workbook I am working out of has something like 45 separate worksheets. Each sheet has two graphs - overall &amp; the last 30 days. When I create the graphs within their specific worksheets, the graphs work fine. However, when I move them to a single sheet to combine all the graphs, the 30 day graphs &quot;Series&quot; formula does not translate over. When I open and close the spreadsheet, the graphs do not update anymore.

Any suggestions for a fix?

Thanks for all of the help!</description>
		<content:encoded><![CDATA[<p>John -</p>
<p>Thanks for the help! The formula works a lot better&#8230;I do have one more question in regards to it&#8230;the question may have more to do with my office security settings then anything else but I wanted to ask anyway.</p>
<p>The workbook I am working out of has something like 45 separate worksheets. Each sheet has two graphs &#8211; overall &amp; the last 30 days. When I create the graphs within their specific worksheets, the graphs work fine. However, when I move them to a single sheet to combine all the graphs, the 30 day graphs &#8220;Series&#8221; formula does not translate over. When I open and close the spreadsheet, the graphs do not update anymore.</p>
<p>Any suggestions for a fix?</p>
<p>Thanks for all of the help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/dynamic-charts/comment-page-2/#comment-182609</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Wed, 15 Feb 2012 13:23:26 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=72#comment-182609</guid>
		<description>Thomas -

1. If 
INDEX(‘Data-Entry’!$5:$5,COUNTA(‘Data-Entry’!$5:$5)) 
is the last entry, then the entry 30th from the end is 
INDEX(‘Data-Entry’!$5:$5,COUNTA(‘Data-Entry’!$5:$5)-29)
so you want
INDEX(‘Data-Entry’!$5:$5,COUNTA(‘Data-Entry’!$5:$5)-29):INDEX(‘Data-Entry’!$5:$5,COUNTA(‘Data-Entry’!$5:$5))
(Watch out, WordPress converts straight quotes to curly quotes.)

2. This is in rows. If you want columns:
INDEX(‘Data-Entry’!$D:$D,COUNTA(‘Data-Entry’!$D:$D)-29):INDEX(‘Data-Entry’!$D:$D,COUNTA(‘Data-Entry’!$D:$D))</description>
		<content:encoded><![CDATA[<p>Thomas -</p>
<p>1. If<br />
INDEX(‘Data-Entry’!$5:$5,COUNTA(‘Data-Entry’!$5:$5))<br />
is the last entry, then the entry 30th from the end is<br />
INDEX(‘Data-Entry’!$5:$5,COUNTA(‘Data-Entry’!$5:$5)-29)<br />
so you want<br />
INDEX(‘Data-Entry’!$5:$5,COUNTA(‘Data-Entry’!$5:$5)-29):INDEX(‘Data-Entry’!$5:$5,COUNTA(‘Data-Entry’!$5:$5))<br />
(Watch out, WordPress converts straight quotes to curly quotes.)</p>
<p>2. This is in rows. If you want columns:<br />
INDEX(‘Data-Entry’!$D:$D,COUNTA(‘Data-Entry’!$D:$D)-29):INDEX(‘Data-Entry’!$D:$D,COUNTA(‘Data-Entry’!$D:$D))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas</title>
		<link>http://peltiertech.com/WordPress/dynamic-charts/comment-page-2/#comment-182426</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Tue, 14 Feb 2012 22:12:49 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=72#comment-182426</guid>
		<description>Great article. I do have two questions, though. I&#039;m creating a chart and dynamic named ranges for charting the last 30 entries in a large data set.  

#1. I am using the index() formula to chart the data. And with that, how do you create only the last 30 days chart? I was using the Offset() formula but I found it to be too volatile. 

Here is an example of a formula I have used to create an overall chart:
=&#039;Data-Entry&#039;!$D$5:INDEX(&#039;Data-Entry&#039;!$5:$5,COUNTA(&#039;Data-Entry&#039;!$5:$5))

#2. To go along with this question, my data is in rows, now columns. How do you switch the syntax of the formula to accommodate this. Thank you for the help!</description>
		<content:encoded><![CDATA[<p>Great article. I do have two questions, though. I&#8217;m creating a chart and dynamic named ranges for charting the last 30 entries in a large data set.  </p>
<p>#1. I am using the index() formula to chart the data. And with that, how do you create only the last 30 days chart? I was using the Offset() formula but I found it to be too volatile. </p>
<p>Here is an example of a formula I have used to create an overall chart:<br />
=&#8217;Data-Entry&#8217;!$D$5:INDEX(&#8216;Data-Entry&#8217;!$5:$5,COUNTA(&#8216;Data-Entry&#8217;!$5:$5))</p>
<p>#2. To go along with this question, my data is in rows, now columns. How do you switch the syntax of the formula to accommodate this. Thank you for the help!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

