<?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: Problem with Opening file (tried to make it a flexible dt name in JSL) in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Problem-with-Opening-file-tried-to-make-it-a-flexible-dt-name-in/m-p/747370#M92756</link>
    <description>&lt;P&gt;i just replaced "MY FILE PATH" in here to not post my actual file path&lt;/P&gt;</description>
    <pubDate>Wed, 17 Apr 2024 07:52:49 GMT</pubDate>
    <dc:creator>lrmc_may</dc:creator>
    <dc:date>2024-04-17T07:52:49Z</dc:date>
    <item>
      <title>Problem with Opening file (tried to make it a flexible dt name in JSL)</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-with-Opening-file-tried-to-make-it-a-flexible-dt-name-in/m-p/747366#M92753</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

//Open Data Table: Recovery_Analysis:Plate Name.jmp
Recovery_Analysis:Plate Name = Open("MY FILEPATH");
 
//Split data table
Recovery_Analysis:Plate Name &amp;lt;&amp;lt; Split(
	Split By(:Chemistry),
	Split(:Concentration),
	Group(:Well Id),
	Output Table("Untitled 17.jmp"),
	Sort by Column Property
);
 
//Save data table: Recovery_Analysis:Plate Name.jmp
Recovery_Analysis:Plate Name &amp;lt;&amp;lt; Save("MY FILEPATH");
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 17 Apr 2024 07:48:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-with-Opening-file-tried-to-make-it-a-flexible-dt-name-in/m-p/747366#M92753</guid>
      <dc:creator>lrmc_may</dc:creator>
      <dc:date>2024-04-17T07:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Opening file (tried to make it a flexible dt name in JSL)</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-with-Opening-file-tried-to-make-it-a-flexible-dt-name-in/m-p/747368#M92754</link>
      <description>&lt;P&gt;What type of problem are you facing?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2024 07:49:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-with-Opening-file-tried-to-make-it-a-flexible-dt-name-in/m-p/747368#M92754</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-04-17T07:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Opening file (tried to make it a flexible dt name in JSL)</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-with-Opening-file-tried-to-make-it-a-flexible-dt-name-in/m-p/747369#M92755</link>
      <description>&lt;P&gt;Hi, im facing an Error message in the very first line with Open.. (sry im a beginner)&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2024 07:52:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-with-Opening-file-tried-to-make-it-a-flexible-dt-name-in/m-p/747369#M92755</guid>
      <dc:creator>lrmc_may</dc:creator>
      <dc:date>2024-04-17T07:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Opening file (tried to make it a flexible dt name in JSL)</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-with-Opening-file-tried-to-make-it-a-flexible-dt-name-in/m-p/747370#M92756</link>
      <description>&lt;P&gt;i just replaced "MY FILE PATH" in here to not post my actual file path&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2024 07:52:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-with-Opening-file-tried-to-make-it-a-flexible-dt-name-in/m-p/747370#M92756</guid>
      <dc:creator>lrmc_may</dc:creator>
      <dc:date>2024-04-17T07:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Opening file (tried to make it a flexible dt name in JSL)</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-with-Opening-file-tried-to-make-it-a-flexible-dt-name-in/m-p/747371#M92757</link>
      <description>&lt;P&gt;What type of error message? Something like:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;"The namespace "Recovery_Analysis" is not defined in access or evaluation of 'Recovery_Analysis:Plate Name' , Recovery_Analysis:Plate Name"&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Most likely you don't need to use namespaces (the part before your table name) and something like this would be enough&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("C:\Program Files\SAS\JMPPRO\16\Samples\Data\Big Class.jmp");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("MY FILEPATH"); 

dt_split = dt &amp;lt;&amp;lt; Split(
	Split By(:Chemistry),
	Split(:Concentration),
	Group(:Well Id),
	Output Table("Split table"),
	Sort by Column Property
);
 
dt_split &amp;lt;&amp;lt; Save("MY FILEPATH FOR SPLIT TABLE");
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;be careful to not overwrite your non-split table&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2024 08:30:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-with-Opening-file-tried-to-make-it-a-flexible-dt-name-in/m-p/747371#M92757</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-04-17T08:30:45Z</dc:date>
    </item>
  </channel>
</rss>

