<?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 V list box and H list box in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/V-list-box-and-H-list-box/m-p/55331#M31298</link>
    <description>&lt;P&gt;dear all&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i want&amp;nbsp; to run JSL to put data table and oneway into one report, but it does not work&lt;/P&gt;
&lt;P&gt;the jsl which i wrote as below:&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
rep=dt&amp;lt;&amp;lt;report
win=New Window( "Example",
  V List Box(rep="$SAMPLE_DATA/Big Class.jmp",
  A=Oneway( Y( :height ), X( :sex ), Means( 1 ), Mean Diamonds( 1 ) ); ));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;where is my wrong?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 21 Apr 2018 12:46:11 GMT</pubDate>
    <dc:creator>TONYMA</dc:creator>
    <dc:date>2018-04-21T12:46:11Z</dc:date>
    <item>
      <title>V list box and H list box</title>
      <link>https://community.jmp.com/t5/Discussions/V-list-box-and-H-list-box/m-p/55331#M31298</link>
      <description>&lt;P&gt;dear all&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i want&amp;nbsp; to run JSL to put data table and oneway into one report, but it does not work&lt;/P&gt;
&lt;P&gt;the jsl which i wrote as below:&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
rep=dt&amp;lt;&amp;lt;report
win=New Window( "Example",
  V List Box(rep="$SAMPLE_DATA/Big Class.jmp",
  A=Oneway( Y( :height ), X( :sex ), Means( 1 ), Mean Diamonds( 1 ) ); ));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;where is my wrong?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 21 Apr 2018 12:46:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/V-list-box-and-H-list-box/m-p/55331#M31298</guid>
      <dc:creator>TONYMA</dc:creator>
      <dc:date>2018-04-21T12:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: V list box and H list box</title>
      <link>https://community.jmp.com/t5/Discussions/V-list-box-and-H-list-box/m-p/55333#M31300</link>
      <description>&lt;P&gt;Your attempt to reference the data table in your display window is not the correct syntax.&amp;nbsp; All functions and messages that are available for a data table are listed in the the Scripting Index under the the Data Table subsection&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Help==&amp;gt;Scripting Index==&amp;gt;Data Table&lt;/P&gt;
&lt;P&gt;The correct syntax to use is:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
rep = dt &amp;lt;&amp;lt; report
win =
New Window( "Example",
	V List Box(
		dt &amp;lt;&amp;lt; new data box(),
		A = Oneway(
			Y( :height ),
			X( :sex ),
			Means( 1 ),
			Mean Diamonds( 1 )
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I also strongly suggest that you read the first 3 chapters of the Scripting Guide.&amp;nbsp; It will speed up your learning of JSL&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Help==&amp;gt;Books==&amp;gt;Scripting Guide&lt;/P&gt;</description>
      <pubDate>Sat, 21 Apr 2018 13:44:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/V-list-box-and-H-list-box/m-p/55333#M31300</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-04-21T13:44:58Z</dc:date>
    </item>
  </channel>
</rss>

