<?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 to run jsl script in excel VBA? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-run-jsl-script-in-excel-VBA/m-p/18569#M16921</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __jive_emoticon_name="sad" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_emote jive_macro" src="https://community.jmp.com/7.0.4.3b79b96/images/emoticons/sad.png"&gt;&lt;/SPAN&gt;, Hoping it will be added in next jmp version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_emote jive_macro" src="https://community.jmp.com/7.0.4.3b79b96/images/emoticons/happy.png"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 May 2016 23:38:58 GMT</pubDate>
    <dc:creator>rainwang</dc:creator>
    <dc:date>2016-05-20T23:38:58Z</dc:date>
    <item>
      <title>How to run jsl script in excel VBA?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-run-jsl-script-in-excel-VBA/m-p/18561#M16913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to run jsl script in excel VBA envirment. the purpose of the script is to open two csv data tables and join them together.&lt;/P&gt;&lt;P&gt;the script likes below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub loadData()&lt;BR /&gt;Dim myjmp As JMP.Application&lt;BR /&gt;Dim jmp_doc As JMP.Document&lt;BR /&gt;Dim jmp_BL&amp;nbsp; As JMP.DataTable&lt;BR /&gt;Dim jmp_dt&amp;nbsp; As JMP.DataTable&lt;BR /&gt;Dim jmp_dtFinal&amp;nbsp; As JMP.DataTable&lt;BR /&gt;Dim jmpstr&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; As String&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set myjmp = CreateObject("JMP.Application")&lt;BR /&gt;myjmp.Visible = True&lt;BR /&gt;Set jmp_doc = myjmp.OpenDocument("C:\Users\xxxxx\Desktop\BL.csv")&lt;BR /&gt;Set jmp_BL = jmp_doc.GetDataTable&lt;/P&gt;&lt;P&gt;Set jmp_doc = myjmp.OpenDocument("C:\Users\xxxxx\Desktop\cbData.csv")&lt;BR /&gt;Set jmp_dt = jmp_doc.GetDataTable&lt;/P&gt;&lt;P&gt;jmpstr = "jmp_dtFinal= jmp_dt &amp;lt;&amp;lt; Join(With(jmp_BL),Merge Same Name Columns,By Matching Columns( :col1 = :col2, :col2= :col2),Drop multiples( 0, 1 ),Name( ""Include non-matches"" )(1, 1),);"&lt;BR /&gt;myjmp.RunCommand jmpstr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The two data tables can be opened correctly, but only the join function, it dosen't work. Can anybody help on the script?&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 May 2016 05:46:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-run-jsl-script-in-excel-VBA/m-p/18561#M16913</guid>
      <dc:creator>rainwang</dc:creator>
      <dc:date>2016-05-17T05:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to run jsl script in excel VBA?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-run-jsl-script-in-excel-VBA/m-p/18562#M16914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can't mix object references between JSL and Automation. If you need to reference an object like a data table, you must do it all in Automation or all in JSL.&amp;nbsp; There is an automation Join method available to Datatable objects.&amp;nbsp; There is also an "AddToJoinList" method to add the columns that you wish to join on.&amp;nbsp; The Automation reference guide can help with this, as can the Datatable automation sample program that ships with JMP.&amp;nbsp; For JMP 12, the sample program is available in C:\Program Files\SAS\JMP\12\Samples\Automation\Visual Basic Samples\Data Table .NET. The Automation reference guide, "Automation Reference.pdf" is available in C:\Program Files\SAS\JMP\12\Documentation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I&amp;nbsp; hope that helps.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Brian Corcoran&lt;/P&gt;&lt;P&gt;JMP Development&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 May 2016 12:26:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-run-jsl-script-in-excel-VBA/m-p/18562#M16914</guid>
      <dc:creator>briancorcoran</dc:creator>
      <dc:date>2016-05-17T12:26:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to run jsl script in excel VBA?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-run-jsl-script-in-excel-VBA/m-p/18563#M16915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Brain&lt;/P&gt;&lt;P&gt;Thank you for your information.&lt;/P&gt;&lt;P&gt;This is helpful for me. while I suffer another issue when refer to the Data Table .NET. There are some examples in Data Table .NET. And I follow the example to finish my script.&lt;/P&gt;&lt;P&gt;Below is the example in DATA Table. NET&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="11600_pastedImage_1.png" style="width: 622px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/3108iF75FD101A83FDBDE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="11600_pastedImage_1.png" alt="11600_pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While I try to use the similar way, but seems when I set the JoinMatchOptions, there's always a error. seems i need set a variable for this script.&lt;/P&gt;&lt;P&gt;while I can't find any help information for this JoinMatchOptions. Not sure if I miss any setting to enable the JMP automation, I already include all the JMP related items in the reference.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="11599_pastedImage_0.png" style="width: 519px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/3109i4769097CABA829AE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="11599_pastedImage_0.png" alt="11599_pastedImage_0.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="11601_pastedImage_3.png" style="width: 461px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/3110i139D26E0DF298A41/image-size/medium?v=v2&amp;amp;px=400" role="button" title="11601_pastedImage_3.png" alt="11601_pastedImage_3.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2016 02:45:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-run-jsl-script-in-excel-VBA/m-p/18563#M16915</guid>
      <dc:creator>rainwang</dc:creator>
      <dc:date>2016-10-19T02:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to run jsl script in excel VBA?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-run-jsl-script-in-excel-VBA/m-p/18564#M16916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would pass False and True rather than 0 and 1,like the example does.&amp;nbsp; However, it is more likely that there is an issue with the import of your data for DT4.&amp;nbsp; It's difficult for me to tell if that table has been imported successfully.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brian Corcoran&lt;/P&gt;&lt;P&gt;JMP Development&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2016 12:49:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-run-jsl-script-in-excel-VBA/m-p/18564#M16916</guid>
      <dc:creator>briancorcoran</dc:creator>
      <dc:date>2016-05-19T12:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to run jsl script in excel VBA?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-run-jsl-script-in-excel-VBA/m-p/18565#M16917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Brian&lt;/P&gt;&lt;P&gt;Maybe I didn't discript it clearly.&lt;/P&gt;&lt;P&gt;When I try to use the example in the&amp;nbsp; Data Table .NET to join tables, I found the example can't work correctly.&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;When I open a data table, I can't only use below script:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim Doc4 As JMP.Document&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim DT4 As JMP.DataTable&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Doc4 = MyJMP.OpenDocument(tempDir &amp;amp; "cbData.csv")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DT4 = Doc4.GetDataTable&lt;/P&gt;&lt;P&gt;Instead, I need add Set at begging of the scripts as below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;Set&lt;/STRONG&gt; Doc4 = MyJMP.OpenDocument(tempDir &amp;amp; "cbData")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;Set&lt;/STRONG&gt; DT4 = Doc4.GetDataTable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After that, both data table can import correctly.&lt;/P&gt;&lt;P&gt;while when go to set the join matching options, when I use below script:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DT4.SetJoinMatchOptions(True, False)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is always an error, seems I also need send this to a variable. But&amp;nbsp; I am not quite sure what's the type of the return value of "&lt;STRONG&gt;DT4.SetJoinMatchOptions(True, False)&lt;/STRONG&gt;". Maybe change the script as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim str as&amp;nbsp; xxxxxx&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set str=&lt;STRONG&gt;DT4.SetJoinMatchOptions(True, False)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not sure if my assumption is right or not, just don't know how this JoinMatchOptions can set.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="11611_pastedImage_6.png" style="width: 495px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/3117i5315D2D21DFEBF2E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="11611_pastedImage_6.png" alt="11611_pastedImage_6.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2016 02:46:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-run-jsl-script-in-excel-VBA/m-p/18565#M16917</guid>
      <dc:creator>rainwang</dc:creator>
      <dc:date>2016-10-19T02:46:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to run jsl script in excel VBA?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-run-jsl-script-in-excel-VBA/m-p/18566#M16918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The use of "Set" for objects can be optional in Visual Studio when using VB, so the samples don't always use it.&amp;nbsp; They were also written for use by early versions of Visual Studio like 2010.&amp;nbsp; Apparently VBA in Excel has its own unique quirks with syntax.&amp;nbsp; In your case, it does not want parenthesis around the options for SetJoinMatchOptions.&amp;nbsp; An alternative is to use Call in front of it.&amp;nbsp; Here is a working sample from my Excel 2013&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'The second example is a join using matching columns from two like&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'datatables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim Doc4 As JMP.Document&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim Doc5 As JMP.Document&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim NewDT2 As JMP.DataTable&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim DT4 As JMP.DataTable&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim DT5 As JMP.DataTable&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set MyJMP = CreateObject("JMP.Application")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MyJMP.Visible = True&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set Doc4 = MyJMP.OpenDocument("C:\Program Files\SAS\JMP\13\Samples\Data\Ingots.jmp")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set Doc5 = MyJMP.OpenDocument("C:\Program Files\SAS\JMP\13\Samples\Data\Ingots2.jmp")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set DT4 = Doc4.GetDataTable&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set DT5 = Doc5.GetDataTable&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DT4.AddToJoinMatchList (("Heat"))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DT4.AddToJoinMatchList (("Soak"))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Set options to Drop Multiples and Not include non-matches&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DT4.SetJoinMatchOptions True, False&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DT5.AddToJoinMatchList (("Heat"))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DT5.AddToJoinMatchList (("Soak"))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DT5.SetJoinMatchOptions True, False&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set NewDT2 = DT4.Join(DT5, JMP.dtJoinConstants.dtJoinMatching, "Join Table")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 May 2016 12:41:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-run-jsl-script-in-excel-VBA/m-p/18566#M16918</guid>
      <dc:creator>briancorcoran</dc:creator>
      <dc:date>2016-05-20T12:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to run jsl script in excel VBA?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-run-jsl-script-in-excel-VBA/m-p/18567#M16919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Brian&lt;/P&gt;&lt;P&gt;Thank you so much for your information.&lt;/P&gt;&lt;P&gt;I have one more question about this data join. When I set the&amp;nbsp; Join Match Options as below to drop multiples and cinlude non-matches in both main and with tables.&lt;/P&gt;&lt;P&gt;&amp;nbsp; DT4.SetJoinMatchOptions False, True&lt;/P&gt;&lt;P&gt;&amp;nbsp; DT5.SetJoinMatchOptions True, True&lt;/P&gt;&lt;P&gt;But the result come out as below, seems these two table joined, but didn't merge with the same name column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="11624_pastedImage_4.png" style="width: 697px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/3124i35BFB636E4264EDC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="11624_pastedImage_4.png" alt="11624_pastedImage_4.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Normally in jmp data table join setting, there is one option "Merge same name column", if check that one, the table will merge columns with same name. But in this VBA join fuction:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set NewDT2 = DT4.Join(DT5, JMP.dtJoinConstants.dtJoinMatching, "Join Table")&lt;/P&gt;&lt;P&gt;There is no such setting.&lt;/P&gt;&lt;P&gt;So do you know how to achive the function of "nerge same name column"?&lt;/P&gt;&lt;P&gt;thank you!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="11622_pastedImage_1.png" style="width: 534px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/3125i04EF5DFBCE3DAA3D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="11622_pastedImage_1.png" alt="11622_pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2016 02:47:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-run-jsl-script-in-excel-VBA/m-p/18567#M16919</guid>
      <dc:creator>rainwang</dc:creator>
      <dc:date>2016-10-19T02:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to run jsl script in excel VBA?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-run-jsl-script-in-excel-VBA/m-p/18568#M16920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm sorry, but that option hasn't made it into Automation yet.&amp;nbsp; You can delete the columns in the result table using automation.&amp;nbsp; Also, if you don't mind doing the table merge into one of the existing tables, you might be able to use UpdateTable instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 May 2016 16:21:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-run-jsl-script-in-excel-VBA/m-p/18568#M16920</guid>
      <dc:creator>briancorcoran</dc:creator>
      <dc:date>2016-05-20T16:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to run jsl script in excel VBA?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-run-jsl-script-in-excel-VBA/m-p/18569#M16921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __jive_emoticon_name="sad" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_emote jive_macro" src="https://community.jmp.com/7.0.4.3b79b96/images/emoticons/sad.png"&gt;&lt;/SPAN&gt;, Hoping it will be added in next jmp version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_emote jive_macro" src="https://community.jmp.com/7.0.4.3b79b96/images/emoticons/happy.png"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 May 2016 23:38:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-run-jsl-script-in-excel-VBA/m-p/18569#M16921</guid>
      <dc:creator>rainwang</dc:creator>
      <dc:date>2016-05-20T23:38:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to run jsl script in excel VBA?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-run-jsl-script-in-excel-VBA/m-p/18570#M16922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, it will be added in JMP 13.&amp;nbsp; Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 May 2016 15:12:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-run-jsl-script-in-excel-VBA/m-p/18570#M16922</guid>
      <dc:creator>briancorcoran</dc:creator>
      <dc:date>2016-05-23T15:12:21Z</dc:date>
    </item>
  </channel>
</rss>

