<?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: why this script is not working?? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/why-this-script-is-not-working/m-p/252890#M49645</link>
    <description>Thanks a lot! :)&lt;/img&gt;</description>
    <pubDate>Wed, 18 Mar 2020 03:06:30 GMT</pubDate>
    <dc:creator>Song</dc:creator>
    <dc:date>2020-03-18T03:06:30Z</dc:date>
    <item>
      <title>why this script is not working??</title>
      <link>https://community.jmp.com/t5/Discussions/why-this-script-is-not-working/m-p/252185#M49507</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );





dd = Current Data Table();

i=1;


newdt&amp;amp;i = dd &amp;lt;&amp;lt; Subset( Output Table Name( "i" ), All Columns( 1 ), All Rows( 1 ) );
//Graph table 



newdt&amp;amp;1 &amp;lt;&amp;lt; Select columns( :As is Config );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;this script is&amp;nbsp; not working at select columns....&lt;/P&gt;&lt;P&gt;please solve it ..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Mar 2020 08:27:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/why-this-script-is-not-working/m-p/252185#M49507</guid>
      <dc:creator>Song</dc:creator>
      <dc:date>2020-03-13T08:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: why this script is not working??</title>
      <link>https://community.jmp.com/t5/Discussions/why-this-script-is-not-working/m-p/252220#M49517</link>
      <description>&lt;P&gt;You appear to be attempting to use SAS Macro syntax in a JMP script.&amp;nbsp; &amp;amp;i is not valid for JSL.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One way to handle what you are attempting to do in JSL is&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

dd = Current Data Table();

i = 1;

Eval(
	Substitute(
			Expr(
				__xxx__ = dd &amp;lt;&amp;lt; Subset( Output Table Name( "i" ), All Columns( 1 ), All Rows( 1 ) );
//Graph table 

				__xxx__ &amp;lt;&amp;lt; Select columns( :As is Config );
			),
		Expr( __xxx__ ), Parse( "newdt" || Char( i ) )
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Documentation on this is in the Scripting Guide.&amp;nbsp; You need to take the time to read through the documentation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp; Help=&amp;gt;JMP Documentation Library=&amp;gt;Scripting Guide&lt;/P&gt;</description>
      <pubDate>Fri, 13 Mar 2020 12:24:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/why-this-script-is-not-working/m-p/252220#M49517</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-03-13T12:24:00Z</dc:date>
    </item>
    <item>
      <title>Re: why this script is not working??</title>
      <link>https://community.jmp.com/t5/Discussions/why-this-script-is-not-working/m-p/252890#M49645</link>
      <description>Thanks a lot! :)&lt;/img&gt;</description>
      <pubDate>Wed, 18 Mar 2020 03:06:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/why-this-script-is-not-working/m-p/252890#M49645</guid>
      <dc:creator>Song</dc:creator>
      <dc:date>2020-03-18T03:06:30Z</dc:date>
    </item>
  </channel>
</rss>

