<?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 Save data table with tab delimiter through script in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Save-data-table-with-tab-delimiter-through-script/m-p/66562#M34451</link>
    <description>&lt;P&gt;Hi Guy's,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is is possible to save a jmp data table to a text file with tab delimiter using a script ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Yossi&lt;/P&gt;</description>
    <pubDate>Mon, 06 Aug 2018 05:29:57 GMT</pubDate>
    <dc:creator>yossi_tokash</dc:creator>
    <dc:date>2018-08-06T05:29:57Z</dc:date>
    <item>
      <title>Save data table with tab delimiter through script</title>
      <link>https://community.jmp.com/t5/Discussions/Save-data-table-with-tab-delimiter-through-script/m-p/66562#M34451</link>
      <description>&lt;P&gt;Hi Guy's,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is is possible to save a jmp data table to a text file with tab delimiter using a script ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Yossi&lt;/P&gt;</description>
      <pubDate>Mon, 06 Aug 2018 05:29:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Save-data-table-with-tab-delimiter-through-script/m-p/66562#M34451</guid>
      <dc:creator>yossi_tokash</dc:creator>
      <dc:date>2018-08-06T05:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: Save data table with tab delimiter through script</title>
      <link>https://community.jmp.com/t5/Discussions/Save-data-table-with-tab-delimiter-through-script/m-p/66567#M34454</link>
      <description>&lt;P&gt;Yes. Here is an example.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here(1);

dt = Open("$Sample_Data/Big Class.jmp");

//modified excerpt from JSL Companion script "2_Extra_SaveText.jsl"
// Save as text with tab delimiters
// Get user Export Preferences
xptPref = Get Preferences( Export Settings );

// Set desired Export Preferences
Preferences(
	ExportSettings(
		End Of Line( CRLF ),
		End Of Field( Tab ),  //optionally try: Comma|Space|Other("|")|Other("^") etc
		Export Table Headers( 1 )
	)
);

// Save as .txt
dt &amp;lt;&amp;lt; Save( "c:/temp/bigclass_tabs.txt" );

// Reset user Export Preferences
Eval( xptPref ); 

// xptPref;  // works as well.

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 06 Aug 2018 07:04:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Save-data-table-with-tab-delimiter-through-script/m-p/66567#M34454</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2018-08-06T07:04:06Z</dc:date>
    </item>
  </channel>
</rss>

