<?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: JSL: Open succeeds in JMP 16.1.0, but fails in Jmp 17.0.0 in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JSL-Open-succeeds-in-JMP-16-1-0-but-fails-in-Jmp-17-0-0/m-p/613818#M81390</link>
    <description>&lt;P&gt;Please inspect the Source table script produced by both versions of JMP when you open the file. Are there any differences?&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;//JMP 16.2.0
    Open(
    "$DESKTOP/test.csv",
    columns(
        New Column( "Col 1", Character, "Nominal" ),
        New Column( "Col 2", Character, "Nominal" )
    ),
    Import Settings(
        End Of Line( CRLF, CR, LF ),
        End Of Field( Comma, CSV( 1 ) ),
        Strip Quotes( 0 ),
        Use Apostrophe as Quotation Mark( 0 ),
        Use Regional Settings( 0 ),
        Scan Whole File( 1 ),
        Treat empty columns as numeric( 0 ),
        CompressNumericColumns( 0 ),
        CompressCharacterColumns( 0 ),
        CompressAllowListCheck( 0 ),
        Labels( 1 ),
        Column Names Start( 1 ),
        Data Starts( 2 ),
        Lines To Read( "All" ),
        Year Rule( "20xx" )
    )
)

//JMP 17.0.0
Open(
    "$DESKTOP/test.csv",
    columns(
        New Column( "Col 1", Character, "Nominal" ),
        New Column( "Col 2", Character, "Nominal" )
    ),
    Import Settings(
        End Of Line( CRLF, CR, LF ),
        End Of Field( Comma, CSV( 1 ) ),
        Strip Quotes( 0 ),
        Use Apostrophe as Quotation Mark( 0 ),
        Use Regional Settings( 0 ),
        Scan Whole File( 0 ),
        Treat empty columns as numeric( 0 ),
        CompressNumericColumns( 0 ),
        CompressCharacterColumns( 0 ),
        CompressAllowListCheck( 0 ),
        Labels( 1 ),
        Column Names Start( 1 ),
        First Named Column( 1 ),
        Data Starts( 2 ),
        Lines To Read( "All" ),
        Year Rule( "20xx" )
    )
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 17 Mar 2023 23:06:08 GMT</pubDate>
    <dc:creator>StarfruitBob</dc:creator>
    <dc:date>2023-03-17T23:06:08Z</dc:date>
    <item>
      <title>JSL: Open succeeds in JMP 16.1.0, but fails in Jmp 17.0.0</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Open-succeeds-in-JMP-16-1-0-but-fails-in-Jmp-17-0-0/m-p/611970#M81224</link>
      <description>&lt;P class=""&gt;&lt;SPAN class=""&gt;Hi All,&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;I have a strange issue where an Open will run successfully in JMP 16.1.0, but will fail when run in JMP 17.0.0. I am running the same .jsl file in both cases.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;The code below fails when run on JMP 17.0.0. The error occurs on the Open, with a log message of "Cannot open table in access or evaluation of 'Open' , Open/*###*/(dt2, Worksheets( "PD cPCR" ), Table Contains Column Headers( 1 ), &lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;invisible)"&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;The file being selected is an Excel file, and the worksheet being selected has 21,000+ rows. Trying some trial and error, I'm able to open the file if I delete all rows except for a few. Leaving in 1000 rows still results in the error.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;Does anyone have ideas for further troubleshooting? Unfortunately, I can't share the file here without significant and time-consuming scrubbing/anonymization.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt2 = pick file ("Pick cPCR reference file", "C:\JMP\");
dt2 = Open(dt2,
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Worksheets("PD cPCR"),
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Table Contains Column Headers( 1 ),
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; invisible
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 08 Jun 2023 16:29:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Open-succeeds-in-JMP-16-1-0-but-fails-in-Jmp-17-0-0/m-p/611970#M81224</guid>
      <dc:creator>andykpdf</dc:creator>
      <dc:date>2023-06-08T16:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: JSL: Open succeeds in JMP 16.1.0, but fails in Jmp 17.0.0</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Open-succeeds-in-JMP-16-1-0-but-fails-in-Jmp-17-0-0/m-p/612120#M81234</link>
      <description>&lt;P&gt;Can you open the file fine using JMP's File -&amp;gt; Open menu in both JMP versions?&lt;/P&gt;</description>
      <pubDate>Wed, 15 Mar 2023 06:06:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Open-succeeds-in-JMP-16-1-0-but-fails-in-Jmp-17-0-0/m-p/612120#M81234</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-03-15T06:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: JSL: Open succeeds in JMP 16.1.0, but fails in Jmp 17.0.0</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Open-succeeds-in-JMP-16-1-0-but-fails-in-Jmp-17-0-0/m-p/612739#M81294</link>
      <description>&lt;P&gt;Yes -- I'm able to open the file successfully through File -&amp;gt; Open in both JMP 16.1 and JMP 17.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Mar 2023 18:06:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Open-succeeds-in-JMP-16-1-0-but-fails-in-Jmp-17-0-0/m-p/612739#M81294</guid>
      <dc:creator>andykpdf</dc:creator>
      <dc:date>2023-03-15T18:06:27Z</dc:date>
    </item>
    <item>
      <title>Re: JSL: Open succeeds in JMP 16.1.0, but fails in Jmp 17.0.0</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Open-succeeds-in-JMP-16-1-0-but-fails-in-Jmp-17-0-0/m-p/613807#M81387</link>
      <description>&lt;P&gt;Even though I can open the file via File -&amp;gt; Open, I want to open it using JSL (to avoid involving manual operations during script execution).&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;or anyone else, any ideas for further troubleshooting?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 21:33:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Open-succeeds-in-JMP-16-1-0-but-fails-in-Jmp-17-0-0/m-p/613807#M81387</guid>
      <dc:creator>andykpdf</dc:creator>
      <dc:date>2023-03-17T21:33:37Z</dc:date>
    </item>
    <item>
      <title>Re: JSL: Open succeeds in JMP 16.1.0, but fails in Jmp 17.0.0</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Open-succeeds-in-JMP-16-1-0-but-fails-in-Jmp-17-0-0/m-p/613818#M81390</link>
      <description>&lt;P&gt;Please inspect the Source table script produced by both versions of JMP when you open the file. Are there any differences?&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;//JMP 16.2.0
    Open(
    "$DESKTOP/test.csv",
    columns(
        New Column( "Col 1", Character, "Nominal" ),
        New Column( "Col 2", Character, "Nominal" )
    ),
    Import Settings(
        End Of Line( CRLF, CR, LF ),
        End Of Field( Comma, CSV( 1 ) ),
        Strip Quotes( 0 ),
        Use Apostrophe as Quotation Mark( 0 ),
        Use Regional Settings( 0 ),
        Scan Whole File( 1 ),
        Treat empty columns as numeric( 0 ),
        CompressNumericColumns( 0 ),
        CompressCharacterColumns( 0 ),
        CompressAllowListCheck( 0 ),
        Labels( 1 ),
        Column Names Start( 1 ),
        Data Starts( 2 ),
        Lines To Read( "All" ),
        Year Rule( "20xx" )
    )
)

//JMP 17.0.0
Open(
    "$DESKTOP/test.csv",
    columns(
        New Column( "Col 1", Character, "Nominal" ),
        New Column( "Col 2", Character, "Nominal" )
    ),
    Import Settings(
        End Of Line( CRLF, CR, LF ),
        End Of Field( Comma, CSV( 1 ) ),
        Strip Quotes( 0 ),
        Use Apostrophe as Quotation Mark( 0 ),
        Use Regional Settings( 0 ),
        Scan Whole File( 0 ),
        Treat empty columns as numeric( 0 ),
        CompressNumericColumns( 0 ),
        CompressCharacterColumns( 0 ),
        CompressAllowListCheck( 0 ),
        Labels( 1 ),
        Column Names Start( 1 ),
        First Named Column( 1 ),
        Data Starts( 2 ),
        Lines To Read( "All" ),
        Year Rule( "20xx" )
    )
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 17 Mar 2023 23:06:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Open-succeeds-in-JMP-16-1-0-but-fails-in-Jmp-17-0-0/m-p/613818#M81390</guid>
      <dc:creator>StarfruitBob</dc:creator>
      <dc:date>2023-03-17T23:06:08Z</dc:date>
    </item>
    <item>
      <title>Re: JSL: Open succeeds in JMP 16.1.0, but fails in Jmp 17.0.0</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Open-succeeds-in-JMP-16-1-0-but-fails-in-Jmp-17-0-0/m-p/613852#M81396</link>
      <description>&lt;P&gt;The tech support link at the bottom of this page will get you help from the JMP team. And likely get the problem properly fixed in a future release.&lt;/P&gt;</description>
      <pubDate>Sat, 18 Mar 2023 03:10:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Open-succeeds-in-JMP-16-1-0-but-fails-in-Jmp-17-0-0/m-p/613852#M81396</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2023-03-18T03:10:08Z</dc:date>
    </item>
    <item>
      <title>Re: JSL: Open succeeds in JMP 16.1.0, but fails in Jmp 17.0.0</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Open-succeeds-in-JMP-16-1-0-but-fails-in-Jmp-17-0-0/m-p/613857#M81397</link>
      <description>&lt;P&gt;As the files can be opened with JMP properly, I agree with &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/982"&gt;@Craige_Hales&lt;/a&gt; about contacting support. They will be most likely help you and if you get solution please post it here. This way everyone else can learn what could be the issue if they were to face similar problems.&lt;/P&gt;</description>
      <pubDate>Sat, 18 Mar 2023 08:04:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Open-succeeds-in-JMP-16-1-0-but-fails-in-Jmp-17-0-0/m-p/613857#M81397</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-03-18T08:04:30Z</dc:date>
    </item>
  </channel>
</rss>

