<?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: How can I save a JMP table in JMP 18 without leaving a record in the file list? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-can-I-save-a-JMP-table-in-JMP-18-without-leaving-a-record-in/m-p/813473#M99484</link>
    <description>&lt;P&gt;In case the data tables are invisible - at least for me they then do not show up in my recent files list when saving them&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", Add to Recent Files( 0 ) , invisible);
dt &amp;lt;&amp;lt; Select Where( Row() &amp;lt; 21 );
d3 = dt &amp;lt;&amp;lt; Subset( Output Table( "AA" ), Selected Rows( 1 ), selected columns( 0 ) , invisible);
Try( d3 &amp;lt;&amp;lt; Delete Table Property( "Source" ) );
Try( d3 &amp;lt;&amp;lt; Delete Table Property( "Source" ) );
d3 &amp;lt;&amp;lt; Save( ".\test.jmp" );
Close( dt, nosave );
Close( d3, nosave );&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sat, 16 Nov 2024 05:10:34 GMT</pubDate>
    <dc:creator>martindemel</dc:creator>
    <dc:date>2024-11-16T05:10:34Z</dc:date>
    <item>
      <title>How can I save a JMP table in JMP 18 without leaving a record in the file list?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-I-save-a-JMP-table-in-JMP-18-without-leaving-a-record-in/m-p/809768#M99103</link>
      <description>&lt;P&gt;The same code is not recorded in JMP17.&lt;/P&gt;&lt;P&gt;Thanks!&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", Add to Recent Files( 0 ) );
dt &amp;lt;&amp;lt; Select Where( Row() &amp;lt; 21 );
d3 = dt &amp;lt;&amp;lt; Subset( Output Table( "AA" ), Selected Rows( 1 ), selected columns( 0 ) );
Try( d3 &amp;lt;&amp;lt; Delete Table Property( "Source" ) );
Try( d3 &amp;lt;&amp;lt; Delete Table Property( "Source" ) );
d3 &amp;lt;&amp;lt; Save( "c:\test.jmp" );
Close( dt, nosave );
Close( d3, nosave );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2024-11-06_16-30-56.png" style="width: 649px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/69887iCA7A03F009D547F9/image-size/large?v=v2&amp;amp;px=999" role="button" title="2024-11-06_16-30-56.png" alt="2024-11-06_16-30-56.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2024 08:35:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-I-save-a-JMP-table-in-JMP-18-without-leaving-a-record-in/m-p/809768#M99103</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2024-11-06T08:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: How can I save a JMP table in JMP 18 without leaving a record in the file list?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-I-save-a-JMP-table-in-JMP-18-without-leaving-a-record-in/m-p/809774#M99106</link>
      <description>&lt;P&gt;thanks for the trick with&amp;nbsp;&lt;FONT face="courier new,courier"&gt;Add to Recent Files(0).&amp;nbsp;&lt;/FONT&gt;&lt;BR /&gt;Nice trick : )&lt;BR /&gt;&lt;BR /&gt;I just noticed the&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;preferences("Add files opened by scripts to the Recent Files list")&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For save, I hope somebody will provide a solution ...&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2024 12:06:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-I-save-a-JMP-table-in-JMP-18-without-leaving-a-record-in/m-p/809774#M99106</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-11-06T12:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: How can I save a JMP table in JMP 18 without leaving a record in the file list?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-I-save-a-JMP-table-in-JMP-18-without-leaving-a-record-in/m-p/813473#M99484</link>
      <description>&lt;P&gt;In case the data tables are invisible - at least for me they then do not show up in my recent files list when saving them&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", Add to Recent Files( 0 ) , invisible);
dt &amp;lt;&amp;lt; Select Where( Row() &amp;lt; 21 );
d3 = dt &amp;lt;&amp;lt; Subset( Output Table( "AA" ), Selected Rows( 1 ), selected columns( 0 ) , invisible);
Try( d3 &amp;lt;&amp;lt; Delete Table Property( "Source" ) );
Try( d3 &amp;lt;&amp;lt; Delete Table Property( "Source" ) );
d3 &amp;lt;&amp;lt; Save( ".\test.jmp" );
Close( dt, nosave );
Close( d3, nosave );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 16 Nov 2024 05:10:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-I-save-a-JMP-table-in-JMP-18-without-leaving-a-record-in/m-p/813473#M99484</guid>
      <dc:creator>martindemel</dc:creator>
      <dc:date>2024-11-16T05:10:34Z</dc:date>
    </item>
  </channel>
</rss>

