<?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: update table using JSL without adding missing columns in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/update-table-using-JSL-without-adding-missing-columns/m-p/11814#M11312</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Jeff!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Apr 2015 16:51:51 GMT</pubDate>
    <dc:creator>tom_e_dunn</dc:creator>
    <dc:date>2015-04-08T16:51:51Z</dc:date>
    <item>
      <title>update table using JSL without adding missing columns</title>
      <link>https://community.jmp.com/t5/Discussions/update-table-using-JSL-without-adding-missing-columns/m-p/11812#M11310</link>
      <description>&lt;P&gt;I'm trying to update the values of a specific column in a data table using values in another data table. The update function seems like the logical choice but it always seems to add extra unmatched columns to the updated table. From the update utility there is an option for this&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="8498_Capture.PNG" style="width: 231px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/1426i34EB9EB6AE545B6D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="8498_Capture.PNG" alt="8498_Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;However there isn't any mention of this in either the scripting index&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="8499_Capture.PNG" style="width: 843px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/1427iB2021666A08D2EDC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="8499_Capture.PNG" alt="8499_Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;or in the help search. I've tried&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt &amp;lt;&amp;lt; update(
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; with(dt2),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; match(:name=:name),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ignore missing,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; add columns from update(none)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;but that doesn't seem to work. Does anyone know what the correct option is for this?&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:13:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/update-table-using-JSL-without-adding-missing-columns/m-p/11812#M11310</guid>
      <dc:creator>tom_e_dunn</dc:creator>
      <dc:date>2023-06-10T23:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: update table using JSL without adding missing columns</title>
      <link>https://community.jmp.com/t5/Discussions/update-table-using-JSL-without-adding-missing-columns/m-p/11813#M11311</link>
      <description>&lt;P&gt;You're almost there!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Looking at the Source script that's added to my table after I do an Update with that option I see that the script is:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Data Table( "Trial1.jmp" ) &amp;lt;&amp;lt; Update(
  With( Data Table( "Little.jmp" ) ),
  Match Columns( :popcorn = :popcorn, :oil amt = :oil, :batch = :batch ),
  Add Columns from Update table( None )
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P style="font-size: 12px; font-family: Courier;"&gt;&lt;STRONG&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="8501_JMPScreenSnapz001.png" style="width: 749px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/1428i80B50662B58EF0B2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="8501_JMPScreenSnapz001.png" alt="8501_JMPScreenSnapz001.png" /&gt;&lt;/span&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P style="font-size: 12px; font-family: Courier;"&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-size: 12px; font-family: Courier;"&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;-Jeff&lt;/SPAN&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Dec 2020 14:20:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/update-table-using-JSL-without-adding-missing-columns/m-p/11813#M11311</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2020-12-12T14:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: update table using JSL without adding missing columns</title>
      <link>https://community.jmp.com/t5/Discussions/update-table-using-JSL-without-adding-missing-columns/m-p/11814#M11312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Jeff!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2015 16:51:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/update-table-using-JSL-without-adding-missing-columns/m-p/11814#M11312</guid>
      <dc:creator>tom_e_dunn</dc:creator>
      <dc:date>2015-04-08T16:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: update table using JSL without adding missing columns</title>
      <link>https://community.jmp.com/t5/Discussions/update-table-using-JSL-without-adding-missing-columns/m-p/549924#M76625</link>
      <description>&lt;P&gt;realized my update table had multiple entries for the same match col.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Sep 2022 21:47:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/update-table-using-JSL-without-adding-missing-columns/m-p/549924#M76625</guid>
      <dc:creator>xxvvcczz</dc:creator>
      <dc:date>2022-09-27T21:47:07Z</dc:date>
    </item>
  </channel>
</rss>

