<?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: Choice of Category Axis Order</title>
	<atom:link href="http://peltiertech.com/WordPress/choice-of-category-axis-order/feed/" rel="self" type="application/rss+xml" />
	<link>http://peltiertech.com/WordPress/choice-of-category-axis-order/</link>
	<description>Peltier Tech Excel Charts and Programming Blog</description>
	<lastBuildDate>Tue, 16 Mar 2010 21:53:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</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: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/choice-of-category-axis-order/comment-page-1/#comment-6534</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Thu, 04 Dec 2008 21:31:55 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=268#comment-6534</guid>
		<description>Very nice. I was writing up a VBA approach for tomorrow, and I&#039;ll still use it (thanks for the topic). But I always like to see someone take a few hints and figure out how to make it all work.</description>
		<content:encoded><![CDATA[<p>Very nice. I was writing up a VBA approach for tomorrow, and I&#8217;ll still use it (thanks for the topic). But I always like to see someone take a few hints and figure out how to make it all work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ckz</title>
		<link>http://peltiertech.com/WordPress/choice-of-category-axis-order/comment-page-1/#comment-6533</link>
		<dc:creator>ckz</dc:creator>
		<pubDate>Thu, 04 Dec 2008 21:14:08 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=268#comment-6533</guid>
		<description>Thank you for your help and your web articles.  I figured it out.

Naming values above the row with name of &quot;Other&quot; (Other would total anything below it - thereby being redundant in the chart, but a good summary in the table)
VertValues = =OFFSET(Sheet1!$B$1,1,0,COUNT(Values)-1,1)
(Note - the Values range includes the value of the &quot;Other&quot; row)
VertCats = =OFFSET(VertValues,0,-1)

Naming values below the row with the name &quot;Other&quot; 
VertCats2 = =Sheet1!$B$13:$B$14
Values = =OFFSET(Values2,0,-1)

Graphing both named ranges.
=SERIES(,(Book2!VertCats,Book2!VertCats2),(Book2!VertValues,Book2!Values2),1)

The answer came from the basic info from the dynamic chart article you referred me to.

Thanks,
ckz</description>
		<content:encoded><![CDATA[<p>Thank you for your help and your web articles.  I figured it out.</p>
<p>Naming values above the row with name of &#8220;Other&#8221; (Other would total anything below it &#8211; thereby being redundant in the chart, but a good summary in the table)<br />
VertValues = =OFFSET(Sheet1!$B$1,1,0,COUNT(Values)-1,1)<br />
(Note &#8211; the Values range includes the value of the &#8220;Other&#8221; row)<br />
VertCats = =OFFSET(VertValues,0,-1)</p>
<p>Naming values below the row with the name &#8220;Other&#8221;<br />
VertCats2 = =Sheet1!$B$13:$B$14<br />
Values = =OFFSET(Values2,0,-1)</p>
<p>Graphing both named ranges.<br />
=SERIES(,(Book2!VertCats,Book2!VertCats2),(Book2!VertValues,Book2!Values2),1)</p>
<p>The answer came from the basic info from the dynamic chart article you referred me to.</p>
<p>Thanks,<br />
ckz</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ckz</title>
		<link>http://peltiertech.com/WordPress/choice-of-category-axis-order/comment-page-1/#comment-6527</link>
		<dc:creator>ckz</dc:creator>
		<pubDate>Thu, 04 Dec 2008 17:47:42 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=268#comment-6527</guid>
		<description>I was a afraid to mention it was a pie chart.  

Only one chart minus the row that includes the &quot;Total Other Items&quot;.  The problem is that rows will be added or deleted in between the &quot;Total Other Items&quot; and whatever is above it.  How do I tell the Offset range to find the word &quot;other&quot; and stop or not include it in the range?</description>
		<content:encoded><![CDATA[<p>I was a afraid to mention it was a pie chart.  </p>
<p>Only one chart minus the row that includes the &#8220;Total Other Items&#8221;.  The problem is that rows will be added or deleted in between the &#8220;Total Other Items&#8221; and whatever is above it.  How do I tell the Offset range to find the word &#8220;other&#8221; and stop or not include it in the range?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/choice-of-category-axis-order/comment-page-1/#comment-6526</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Thu, 04 Dec 2008 16:44:18 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=268#comment-6526</guid>
		<description>ckz replied by email:

&lt;em&gt;No plotting by order of highest to lowest, just a pretty pie chart
making a picture of a summary table.  I can&#039;t move the the &quot;Total
Other Items&quot; to the bottom because it totalizes everything below it.&lt;/em&gt;

&lt;em&gt;I just read through the dynamic chart, can I include two name ranges
with an offset of -1 for one of the ranges to not include the &quot;Total
Other Items&quot;?&lt;/em&gt;

Here is my reply:

Hmm, a pie chart. Well, I&#039;ll answer anyway.

Do you want to plot all of the data in your list except for &quot;Total Other Items&quot;? If so, then you should have two ranges, one for display with this item inserted where needed, and the other for the chart without this item.</description>
		<content:encoded><![CDATA[<p>ckz replied by email:</p>
<p><em>No plotting by order of highest to lowest, just a pretty pie chart<br />
making a picture of a summary table.  I can&#8217;t move the the &#8220;Total<br />
Other Items&#8221; to the bottom because it totalizes everything below it.</em></p>
<p><em>I just read through the dynamic chart, can I include two name ranges<br />
with an offset of -1 for one of the ranges to not include the &#8220;Total<br />
Other Items&#8221;?</em></p>
<p>Here is my reply:</p>
<p>Hmm, a pie chart. Well, I&#8217;ll answer anyway.</p>
<p>Do you want to plot all of the data in your list except for &#8220;Total Other Items&#8221;? If so, then you should have two ranges, one for display with this item inserted where needed, and the other for the chart without this item.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/choice-of-category-axis-order/comment-page-1/#comment-6525</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Thu, 04 Dec 2008 16:21:34 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=268#comment-6525</guid>
		<description>Is there a method to your madness? You aren&#039;t plotting by order of highest to lowest, nor by alphabetical order.

The easiest thing to do, also the most sensible for anyone interpreting your chart, is to put &quot;Total Other items&quot; at the bottom of the list, because it isn&#039;t a stand-alone item. This way, you only need to know how many rows there are in the range, and plot that number minus 1.

Then you could use a dynamic charting approach like I described in &lt;a href=&quot;http://peltiertech.com/WordPress/2008/05/14/dynamic-charts/&quot; title=&quot;Dynamic Charts&quot; rel=&quot;nofollow&quot;&gt;Dynamic Charts&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Is there a method to your madness? You aren&#8217;t plotting by order of highest to lowest, nor by alphabetical order.</p>
<p>The easiest thing to do, also the most sensible for anyone interpreting your chart, is to put &#8220;Total Other items&#8221; at the bottom of the list, because it isn&#8217;t a stand-alone item. This way, you only need to know how many rows there are in the range, and plot that number minus 1.</p>
<p>Then you could use a dynamic charting approach like I described in <a href="http://peltiertech.com/WordPress/2008/05/14/dynamic-charts/" title="Dynamic Charts" rel="nofollow">Dynamic Charts</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ckz</title>
		<link>http://peltiertech.com/WordPress/choice-of-category-axis-order/comment-page-1/#comment-6524</link>
		<dc:creator>ckz</dc:creator>
		<pubDate>Thu, 04 Dec 2008 16:10:51 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=268#comment-6524</guid>
		<description>I am creating a chart.  I have  list of items.  Within the list there is one row that I do not want included.  At the same time, there are rows that are inserted or deleted above the row I do not want included.  Is there a way to use ranges to address this?

Example:
Vegetables:
Brocoli     5
Carrots   6
Squash   4
Total Other Items  8
Apples    3
Oranges  3
Tomatoes  2

I want to graph Brocoli through Tomtatoes minus &quot;Total Other items&quot;.  At times, the program will insert a row between &quot;Squash&quot; and &quot;total Other items&quot;

Brocoli     5
Carrots   6
Squash   4
Pumpkin 3
Potatoes 10
Total Other Items  8
Apples    3
Oranges  3
Tomatoes  2

How do I make the chart series see the changes between &quot;Squash&quot; and &quot;Total Other Items&quot; and still not include &quot;Total Other Items&quot;.  

I really appreciate it if you can help me with this VBA code for excel to create a dynamic chart.

ckz</description>
		<content:encoded><![CDATA[<p>I am creating a chart.  I have  list of items.  Within the list there is one row that I do not want included.  At the same time, there are rows that are inserted or deleted above the row I do not want included.  Is there a way to use ranges to address this?</p>
<p>Example:<br />
Vegetables:<br />
Brocoli     5<br />
Carrots   6<br />
Squash   4<br />
Total Other Items  8<br />
Apples    3<br />
Oranges  3<br />
Tomatoes  2</p>
<p>I want to graph Brocoli through Tomtatoes minus &#8220;Total Other items&#8221;.  At times, the program will insert a row between &#8220;Squash&#8221; and &#8220;total Other items&#8221;</p>
<p>Brocoli     5<br />
Carrots   6<br />
Squash   4<br />
Pumpkin 3<br />
Potatoes 10<br />
Total Other Items  8<br />
Apples    3<br />
Oranges  3<br />
Tomatoes  2</p>
<p>How do I make the chart series see the changes between &#8220;Squash&#8221; and &#8220;Total Other Items&#8221; and still not include &#8220;Total Other Items&#8221;.  </p>
<p>I really appreciate it if you can help me with this VBA code for excel to create a dynamic chart.</p>
<p>ckz</p>
]]></content:encoded>
	</item>
</channel>
</rss>
