<?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 JMP17 Upgrade Forcing Superscript Broke JMP14 Working Script in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JMP17-Upgrade-Forcing-Superscript-Broke-JMP14-Working-Script/m-p/905231#M106372</link>
    <description>&lt;P&gt;Hi Folk, I would give an example of script but after troubleshooting an explanation should suffice.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a data table from a CSV source that has many columns of trace data that has a column name with units at the end. For degrees C the header is Temperature [0c] and for cubic meters per hour it is Air Flow [m3/h]. There are others. I built a script that opens this data file and another that has calculated limits that is static. Worked great in JMP14. Was forced into JMP17 which is fine; however, JMP17 is superscripting the C for Celsius and 3 for Cubic. My reference limit file does not have that, and when I iterate through the columns for plotting they do not match. The easy fix was to make the static reference files saved with superscript. However, that is not how the input data comes and I&amp;nbsp; fear some other future upgrade or use of the JMP data into some other user interface like PBI or SSRS will balk at it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there an easy fix for preventing this in JMP17? Or should I just stay happy that I have a short (or maybe Long) term fix.&lt;/P&gt;</description>
    <pubDate>Wed, 01 Oct 2025 02:30:25 GMT</pubDate>
    <dc:creator>MikeTV99</dc:creator>
    <dc:date>2025-10-01T02:30:25Z</dc:date>
    <item>
      <title>JMP17 Upgrade Forcing Superscript Broke JMP14 Working Script</title>
      <link>https://community.jmp.com/t5/Discussions/JMP17-Upgrade-Forcing-Superscript-Broke-JMP14-Working-Script/m-p/905231#M106372</link>
      <description>&lt;P&gt;Hi Folk, I would give an example of script but after troubleshooting an explanation should suffice.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a data table from a CSV source that has many columns of trace data that has a column name with units at the end. For degrees C the header is Temperature [0c] and for cubic meters per hour it is Air Flow [m3/h]. There are others. I built a script that opens this data file and another that has calculated limits that is static. Worked great in JMP14. Was forced into JMP17 which is fine; however, JMP17 is superscripting the C for Celsius and 3 for Cubic. My reference limit file does not have that, and when I iterate through the columns for plotting they do not match. The easy fix was to make the static reference files saved with superscript. However, that is not how the input data comes and I&amp;nbsp; fear some other future upgrade or use of the JMP data into some other user interface like PBI or SSRS will balk at it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there an easy fix for preventing this in JMP17? Or should I just stay happy that I have a short (or maybe Long) term fix.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Oct 2025 02:30:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP17-Upgrade-Forcing-Superscript-Broke-JMP14-Working-Script/m-p/905231#M106372</guid>
      <dc:creator>MikeTV99</dc:creator>
      <dc:date>2025-10-01T02:30:25Z</dc:date>
    </item>
    <item>
      <title>Re: JMP17 Upgrade Forcing Superscript Broke JMP14 Working Script</title>
      <link>https://community.jmp.com/t5/Discussions/JMP17-Upgrade-Forcing-Superscript-Broke-JMP14-Working-Script/m-p/905289#M106375</link>
      <description>&lt;P&gt;I am not sure why your column names are showing up with superscripts. On my side, I had no issues importing the attached csv file using the normal method of File -&amp;gt; Open with Preview.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;By the way, if you are using JSL scripting already, you may be interested in referencing columns by number instead of name. Here's an example from the Scripting Index entry for the Column function:&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
Open( "$SAMPLE_DATA/Big Class.jmp" );
col4 = Column( 4 );
ht = Column( "height" );
col4[1] + ht[2];&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Notice that you can reference a column as "Column( 4 )" or "Column( "height" ); both are ok. This gets rid of any reliance on exactly matching the column names. This is a good fix if your data table is always formatted the same way (same number and order of columns).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Oct 2025 07:19:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP17-Upgrade-Forcing-Superscript-Broke-JMP14-Working-Script/m-p/905289#M106375</guid>
      <dc:creator>christian-z</dc:creator>
      <dc:date>2025-10-01T07:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: JMP17 Upgrade Forcing Superscript Broke JMP14 Working Script</title>
      <link>https://community.jmp.com/t5/Discussions/JMP17-Upgrade-Forcing-Superscript-Broke-JMP14-Working-Script/m-p/905440#M106385</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/73849"&gt;@MikeTV99&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi Folk, I would give an example of script but after troubleshooting an explanation should suffice.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Providing a file or script that causes the issue is a great help!&lt;BR /&gt;It is more efficient to upload a file that can be used to reproduce the issue than to write a hundred words or more.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;A guess: a "parse" error within a script&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Open(
	"$DOWNLOADS/Superscript_Issue.csv",
	Import Settings(
		End Of Field( Other( ";" ), CSV( 0 ) ),
	)
);

column name = column(1) &amp;lt;&amp;lt; get name;

Parse(column name)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Oct 2025 18:38:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP17-Upgrade-Forcing-Superscript-Broke-JMP14-Working-Script/m-p/905440#M106385</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-10-01T18:38:14Z</dc:date>
    </item>
  </channel>
</rss>

