<?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: Sample Parallel Coordinate Chart</title>
	<atom:link href="http://peltiertech.com/WordPress/sample-parallel-coordinate-chart/feed/" rel="self" type="application/rss+xml" />
	<link>http://peltiertech.com/WordPress/sample-parallel-coordinate-chart/</link>
	<description>Peltier Tech Excel Charts and Programming Blog</description>
	<lastBuildDate>Wed, 23 May 2012 11:03:15 +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: Jim Janas</title>
		<link>http://peltiertech.com/WordPress/sample-parallel-coordinate-chart/comment-page-1/#comment-217215</link>
		<dc:creator>Jim Janas</dc:creator>
		<pubDate>Mon, 07 May 2012 11:40:31 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=493#comment-217215</guid>
		<description>I managed to get my chart working. I did not know you could paste a series into a chart. That worked great. Data labels are working as well. Your tutorial&#039;s are great.

Thanks again.</description>
		<content:encoded><![CDATA[<p>I managed to get my chart working. I did not know you could paste a series into a chart. That worked great. Data labels are working as well. Your tutorial&#8217;s are great.</p>
<p>Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Janas</title>
		<link>http://peltiertech.com/WordPress/sample-parallel-coordinate-chart/comment-page-1/#comment-216453</link>
		<dc:creator>Jim Janas</dc:creator>
		<pubDate>Fri, 04 May 2012 19:34:38 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=493#comment-216453</guid>
		<description>Jon:

Sample Parallel Coordinate Chart – Question(s)

Unfortunately, I know enough to be dangerous. I have around 70 items in the table. The data values varies quite a bit and I have to use a log scale for the axis. I modified a macro to change all the line colors to a muted color. Actually, the macro was written by you for another purpose.

Sub FormatLinez() &lt; --- my change
Dim srs As Series
For Each srs In ActiveChart.SeriesCollection
srs.Border.Weight = xlThin
srs.Border.Color = RGB(236, 236, 236) &lt; --- my change
Next
End Sub

The ActiveX listbox works great. One of my earlier problems was I failed to turnoff Design Mode after building the table. My match and Index statements work correctly. My problem is NO chart line for the selected item. Hopefully, you can point me in the right direction.

One more thing, where do you set the data labels for the line?

Thanks again

Jim Janas</description>
		<content:encoded><![CDATA[<p>Jon:</p>
<p>Sample Parallel Coordinate Chart – Question(s)</p>
<p>Unfortunately, I know enough to be dangerous. I have around 70 items in the table. The data values varies quite a bit and I have to use a log scale for the axis. I modified a macro to change all the line colors to a muted color. Actually, the macro was written by you for another purpose.</p>
<p>Sub FormatLinez() &lt; &#8212; my change<br />
Dim srs As Series<br />
For Each srs In ActiveChart.SeriesCollection<br />
srs.Border.Weight = xlThin<br />
srs.Border.Color = RGB(236, 236, 236) &lt; &#8212; my change<br />
Next<br />
End Sub</p>
<p>The ActiveX listbox works great. One of my earlier problems was I failed to turnoff Design Mode after building the table. My match and Index statements work correctly. My problem is NO chart line for the selected item. Hopefully, you can point me in the right direction.</p>
<p>One more thing, where do you set the data labels for the line?</p>
<p>Thanks again</p>
<p>Jim Janas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/sample-parallel-coordinate-chart/comment-page-1/#comment-216334</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Fri, 04 May 2012 12:43:34 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=493#comment-216334</guid>
		<description>Jim -

In this example I used a listbox from the Controls Toolbox. This places the selected list item in the linked cell. You need to use a MATCH function to get the index.

A listbox from the Forms Toolbar will place the index of the selected item in the linked cell. Use the control&#039;s linked cell directly in the INDEX function, rather than the cell with the MATCH function.</description>
		<content:encoded><![CDATA[<p>Jim -</p>
<p>In this example I used a listbox from the Controls Toolbox. This places the selected list item in the linked cell. You need to use a MATCH function to get the index.</p>
<p>A listbox from the Forms Toolbar will place the index of the selected item in the linked cell. Use the control&#8217;s linked cell directly in the INDEX function, rather than the cell with the MATCH function.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Janas</title>
		<link>http://peltiertech.com/WordPress/sample-parallel-coordinate-chart/comment-page-1/#comment-216317</link>
		<dc:creator>Jim Janas</dc:creator>
		<pubDate>Fri, 04 May 2012 11:58:36 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=493#comment-216317</guid>
		<description>Sample Parallel Coordinate Chart - Question

I am trying to do something similar to your sample. However, what I receive in the linked cell(a2) is an index number. The match statement in a3 then fails unable to find a match. Is there a property that needs to be turned on for the list box to return a value instead of an index number?

Thanks
jim</description>
		<content:encoded><![CDATA[<p>Sample Parallel Coordinate Chart &#8211; Question</p>
<p>I am trying to do something similar to your sample. However, what I receive in the linked cell(a2) is an index number. The match statement in a3 then fails unable to find a match. Is there a property that needs to be turned on for the list box to return a value instead of an index number?</p>
<p>Thanks<br />
jim</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/sample-parallel-coordinate-chart/comment-page-1/#comment-169867</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Mon, 02 Jan 2012 23:12:57 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=493#comment-169867</guid>
		<description>Hi Christy -

Using different scores can be problematic. It is important to ensure that those reading the chart are aware of the different scales.

In order for the different measures to fill the whole Y axis range, you could normalize the scores for each category, where the plotted score

Z = (Y - Ymin)/(Ymax-Ymin)

ranges from 0 to 1.</description>
		<content:encoded><![CDATA[<p>Hi Christy -</p>
<p>Using different scores can be problematic. It is important to ensure that those reading the chart are aware of the different scales.</p>
<p>In order for the different measures to fill the whole Y axis range, you could normalize the scores for each category, where the plotted score</p>
<p>Z = (Y &#8211; Ymin)/(Ymax-Ymin)</p>
<p>ranges from 0 to 1.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christy</title>
		<link>http://peltiertech.com/WordPress/sample-parallel-coordinate-chart/comment-page-1/#comment-169792</link>
		<dc:creator>Christy</dc:creator>
		<pubDate>Mon, 02 Jan 2012 18:18:23 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=493#comment-169792</guid>
		<description>I am wondering how to make such a parallel coordinates figure where the scale of severity, in this case, is different for each visit.  For example, on visit 1 and 2 the scores range from 0-4, but on visit 3 a different type of score is taken that ranges from 120-200.  So, dual y-axes?

thanks</description>
		<content:encoded><![CDATA[<p>I am wondering how to make such a parallel coordinates figure where the scale of severity, in this case, is different for each visit.  For example, on visit 1 and 2 the scores range from 0-4, but on visit 3 a different type of score is taken that ranges from 120-200.  So, dual y-axes?</p>
<p>thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

