<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Col List Box not pulling results when in the same window as a Pareto Plot in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Col-List-Box-not-pulling-results-when-in-the-same-window-as-a/m-p/515055#M74182</link>
    <description>&lt;P&gt;Note sure exactly what's going on with your code but here is an alternative representation:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;GraphingTable = Open( "Vinyl Data.jmp");

//Select the Specs you want to compare by using a COL LIST BOX
ListNumericCols = GraphingTable &amp;lt;&amp;lt; Get Column Names(numeric);	
show (ListNumericCols);

	

	nw = New Window("Select Specs for analysis", &amp;lt;&amp;lt; Modal, 
		&amp;lt;&amp;lt;onClose(
			CpkSpecNames = CpkSpecs &amp;lt;&amp;lt; get selected
		),
		Graphing Table &amp;lt;&amp;lt; Pareto Plot( Cause( :"Pass/Fail"n ) ),
		CpkSpecs = Col List Box (&amp;lt;&amp;lt; Set Items (ListNumericCols))
	);

	
show (CpkSpecNames);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 28 Jun 2022 16:06:44 GMT</pubDate>
    <dc:creator>David_Burnham</dc:creator>
    <dc:date>2022-06-28T16:06:44Z</dc:date>
    <item>
      <title>Col List Box not pulling results when in the same window as a Pareto Plot</title>
      <link>https://community.jmp.com/t5/Discussions/Col-List-Box-not-pulling-results-when-in-the-same-window-as-a/m-p/515005#M74180</link>
      <description>&lt;P&gt;I am trying to have a Col List Box to select specifications of a product. When running by itself, the Col List Box works fine, however when I try to add a pareto plot to the same window as a reference for which parts I should or should not pick from the Col List Box, it no longer sends the data selected. I tried with an H List Box as well for the pareto and a separate button to force the desired result but it still had issues. Any help would be greatly appreciated.&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;GraphingTable = Open( "Vinyl Data.jmp");

//Select the Specs you want to compare by using a COL LIST BOX
ListNumericCols = GraphingTable &amp;lt;&amp;lt; Get Column Names(numeric);	
show (ListNumericCols);

	

	SelectCpkSpecs = New Window("Select Specs for analysis", &amp;lt;&amp;lt; Modal, &amp;lt;&amp;lt; return result,
	Graphing Table &amp;lt;&amp;lt; Pareto Plot( Cause( :"Pass/Fail"n ) );
	CpkSpecs = Col List Box (&amp;lt;&amp;lt; Set Items (ListNumericCols))
	);
	CpkSpecNames = SelectCpkSpecs["CpkSpecs"];
	
show (CpkSpecNames);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:25:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Col-List-Box-not-pulling-results-when-in-the-same-window-as-a/m-p/515005#M74180</guid>
      <dc:creator>JMewborn</dc:creator>
      <dc:date>2023-06-11T11:25:24Z</dc:date>
    </item>
    <item>
      <title>Re: Col List Box not pulling results when in the same window as a Pareto Plot</title>
      <link>https://community.jmp.com/t5/Discussions/Col-List-Box-not-pulling-results-when-in-the-same-window-as-a/m-p/515055#M74182</link>
      <description>&lt;P&gt;Note sure exactly what's going on with your code but here is an alternative representation:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;GraphingTable = Open( "Vinyl Data.jmp");

//Select the Specs you want to compare by using a COL LIST BOX
ListNumericCols = GraphingTable &amp;lt;&amp;lt; Get Column Names(numeric);	
show (ListNumericCols);

	

	nw = New Window("Select Specs for analysis", &amp;lt;&amp;lt; Modal, 
		&amp;lt;&amp;lt;onClose(
			CpkSpecNames = CpkSpecs &amp;lt;&amp;lt; get selected
		),
		Graphing Table &amp;lt;&amp;lt; Pareto Plot( Cause( :"Pass/Fail"n ) ),
		CpkSpecs = Col List Box (&amp;lt;&amp;lt; Set Items (ListNumericCols))
	);

	
show (CpkSpecNames);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2022 16:06:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Col-List-Box-not-pulling-results-when-in-the-same-window-as-a/m-p/515055#M74182</guid>
      <dc:creator>David_Burnham</dc:creator>
      <dc:date>2022-06-28T16:06:44Z</dc:date>
    </item>
    <item>
      <title>Re: Col List Box not pulling results when in the same window as a Pareto Plot</title>
      <link>https://community.jmp.com/t5/Discussions/Col-List-Box-not-pulling-results-when-in-the-same-window-as-a/m-p/515060#M74184</link>
      <description>&lt;P&gt;I see the problem with your code now : you have a semicolon instead of a comma on the pareto plot line.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2022 16:10:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Col-List-Box-not-pulling-results-when-in-the-same-window-as-a/m-p/515060#M74184</guid>
      <dc:creator>David_Burnham</dc:creator>
      <dc:date>2022-06-28T16:10:29Z</dc:date>
    </item>
  </channel>
</rss>

