<?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 How to write a JSL script to copy and paste a data table Source into another data table? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-write-a-JSL-script-to-copy-and-paste-a-data-table-Source/m-p/560373#M77376</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="giulia_lambiase_0-1666785048036.png" style="width: 199px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/46578iFD590917A2866D2F/image-dimensions/199x182?v=v2" width="199" height="182" role="button" title="giulia_lambiase_0-1666785048036.png" alt="giulia_lambiase_0-1666785048036.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="giulia_lambiase_1-1666785079148.png" style="width: 150px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/46579i6E1AC7C3585646A4/image-dimensions/150x185?v=v2" width="150" height="185" role="button" title="giulia_lambiase_1-1666785079148.png" alt="giulia_lambiase_1-1666785079148.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 10 Jun 2023 23:55:58 GMT</pubDate>
    <dc:creator>jlmbs</dc:creator>
    <dc:date>2023-06-10T23:55:58Z</dc:date>
    <item>
      <title>How to write a JSL script to copy and paste a data table Source into another data table?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-write-a-JSL-script-to-copy-and-paste-a-data-table-Source/m-p/560373#M77376</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="giulia_lambiase_0-1666785048036.png" style="width: 199px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/46578iFD590917A2866D2F/image-dimensions/199x182?v=v2" width="199" height="182" role="button" title="giulia_lambiase_0-1666785048036.png" alt="giulia_lambiase_0-1666785048036.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="giulia_lambiase_1-1666785079148.png" style="width: 150px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/46579i6E1AC7C3585646A4/image-dimensions/150x185?v=v2" width="150" height="185" role="button" title="giulia_lambiase_1-1666785079148.png" alt="giulia_lambiase_1-1666785079148.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:55:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-write-a-JSL-script-to-copy-and-paste-a-data-table-Source/m-p/560373#M77376</guid>
      <dc:creator>jlmbs</dc:creator>
      <dc:date>2023-06-10T23:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a JSL script to copy and paste a data table Source into another data table?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-write-a-JSL-script-to-copy-and-paste-a-data-table-Source/m-p/560380#M77377</link>
      <description>&lt;P&gt;Here is one option&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");

// create table with 
dt_summary = dt &amp;lt;&amp;lt; Summary(
	Group(:age),
	Mean(:height),
	Mean(:weight),
	Freq("None"),
	Weight("None")
);

source_script = dt_summary &amp;lt;&amp;lt; Get Property("Source");
close(dt_summary, no save);

Eval(EvalExpr(
	dt &amp;lt;&amp;lt; New Script("SourceFromSummary",
		Expr(Name Expr(source_script))
	);
));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 26 Oct 2022 12:12:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-write-a-JSL-script-to-copy-and-paste-a-data-table-Source/m-p/560380#M77377</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2022-10-26T12:12:56Z</dc:date>
    </item>
  </channel>
</rss>

