<?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 do I include the dialog box ´Recode column names' in jsl script or a function that does something similar. in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-do-I-include-the-dialog-box-Recode-column-names-in-jsl/m-p/267398#M52063</link>
    <description>&lt;P&gt;Thanks for the quick reply. It is a really good suggestion which makes automation more feasible. I'll try and adopt this approach over time as my newbie JSL skills develop =)&lt;/img&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 18 May 2020 13:30:03 GMT</pubDate>
    <dc:creator>JakobHerschend</dc:creator>
    <dc:date>2020-05-18T13:30:03Z</dc:date>
    <item>
      <title>How do I include the dialog box ´Recode column names' in jsl script or a function that does something similar.</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-include-the-dialog-box-Recode-column-names-in-jsl/m-p/267296#M52040</link>
      <description>&lt;P&gt;Hi Community&lt;/P&gt;&lt;P&gt;I'm building a script in JMP 15&amp;nbsp;that imports&amp;nbsp;data and performs a rough clean-up.&amp;nbsp;In the process I need to convert a string of identifiers&amp;nbsp;in a single columns (e.g. string;&amp;nbsp;Trial_Replicate_DrugConcentration_Patient) to multiple columns&amp;nbsp;using the &lt;FONT face="Consolas" size="2" color="#000080"&gt;text to columns&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;(&lt;/FONT&gt;) function and separation based on "_". This provides me with the desired columns, although without column header. Ideally I wan't the script to open up the 'Recode column names' dialog box so the user can set the names as needed. I would prefer&amp;nbsp;a dialog box option if possible, to make the script easy to handle for inexperienced JMP users&amp;nbsp;and making&amp;nbsp;it usable for other strings as well.&amp;nbsp;But I have not been able to find a way to open the dialog box through scripting - ala. &lt;FONT face="Consolas" size="2" color="#0000dd"&gt;Open&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;()&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I'm open to other suggestions =)&lt;/img&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;Jakob&lt;/P&gt;</description>
      <pubDate>Sun, 17 May 2020 08:08:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-include-the-dialog-box-Recode-column-names-in-jsl/m-p/267296#M52040</guid>
      <dc:creator>JakobHerschend</dc:creator>
      <dc:date>2020-05-17T08:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: How do I include the dialog box ´Recode column names' in jsl script or a function that does something similar.</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-include-the-dialog-box-Recode-column-names-in-jsl/m-p/267304#M52043</link>
      <description>&lt;P&gt;You could examine the first row in the original column with the Words() function and obtain the number of columns to be named. You could then present a simple dialog with a string column edit box for the user to input their choice of names. You could optionally provide the values in that first row as a guide to the meaning of the columns.&lt;/P&gt;</description>
      <pubDate>Sun, 17 May 2020 11:57:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-include-the-dialog-box-Recode-column-names-in-jsl/m-p/267304#M52043</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2020-05-17T11:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: How do I include the dialog box ´Recode column names' in jsl script or a function that does something similar.</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-include-the-dialog-box-Recode-column-names-in-jsl/m-p/267309#M52044</link>
      <description>&lt;P&gt;You can access the Recode Column Names through the Main Menu() function. &amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;main menu("recode column names")&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 17 May 2020 13:44:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-include-the-dialog-box-Recode-column-names-in-jsl/m-p/267309#M52044</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-05-17T13:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: How do I include the dialog box ´Recode column names' in jsl script or a function that does something similar.</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-include-the-dialog-box-Recode-column-names-in-jsl/m-p/267398#M52063</link>
      <description>&lt;P&gt;Thanks for the quick reply. It is a really good suggestion which makes automation more feasible. I'll try and adopt this approach over time as my newbie JSL skills develop =)&lt;/img&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 May 2020 13:30:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-include-the-dialog-box-Recode-column-names-in-jsl/m-p/267398#M52063</guid>
      <dc:creator>JakobHerschend</dc:creator>
      <dc:date>2020-05-18T13:30:03Z</dc:date>
    </item>
    <item>
      <title>Re: How do I include the dialog box ´Recode column names' in jsl script or a function that does something similar.</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-include-the-dialog-box-Recode-column-names-in-jsl/m-p/267400#M52064</link>
      <description>&lt;P&gt;Really simple solution. I will settle for this solution until my JSL skills develop further =)&lt;/img&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 May 2020 13:31:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-include-the-dialog-box-Recode-column-names-in-jsl/m-p/267400#M52064</guid>
      <dc:creator>JakobHerschend</dc:creator>
      <dc:date>2020-05-18T13:31:15Z</dc:date>
    </item>
  </channel>
</rss>

