<?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 to remove virtual join Reference Link? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JSL-to-remove-virtual-join-Reference-Link/m-p/236397#M46655</link>
    <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/16920"&gt;@khusodo&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;A Link ID is a column property assigned in an auxiliary table.&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;dt1 = Open( "$SAMPLE_DATA/Pizza Profiles.jmp" );
dt1:ID &amp;lt;&amp;lt; Set Property( "Link ID", 1 );
// add Link ID and turn it on&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Link Reference is a column property that "references" the information in the auxiliary table. Both dt1 abd Dt2 must have a column called ID.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;dt2 = Open( "$SAMPLE_DATA/Pizza Responses.jmp" );&lt;BR /&gt;dt2:Choice1 &amp;lt;&amp;lt; Set Property( "Link Reference", Reference Table( "$SAMPLE_DATA/Pizza Profiles.jmp" ) );&lt;BR /&gt;dt2:Choice2 &amp;lt;&amp;lt; Set Property( "Link Reference", Reference Table( "$SAMPLE_DATA/Pizza Profiles.jmp" ) );&lt;BR /&gt;dt2:Choice &amp;lt;&amp;lt; Set Property( "Link Reference", Reference Table( "$SAMPLE_DATA/Pizza Profiles.jmp" ) );&lt;BR /&gt;// add Link Reference to the Choice1, Choice2, and Choice columns&lt;/PRE&gt;
&lt;P&gt;When both tables are open, an interactive analysis directed at the main table will display columns from both the main (dt2) and auxiliary (dt1) tables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Close the auxiliary table, rather than unlinking, especially, if the link might be used later, possibly for a different file.&lt;/LI&gt;
&lt;LI&gt;To remove the links and or references&lt;/LI&gt;
&lt;/OL&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt1:ID &amp;lt;&amp;lt; Set Property("Link ID",0)  ;
dt2:Choice1 &amp;lt;&amp;lt; delete property("Link Reference");
dt2:Choice2 &amp;lt;&amp;lt; delete property("Link Reference");
dt2:Choice &amp;lt;&amp;lt; delete property("Link Reference");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 26 Nov 2019 01:59:15 GMT</pubDate>
    <dc:creator>gzmorgan0</dc:creator>
    <dc:date>2019-11-26T01:59:15Z</dc:date>
    <item>
      <title>JSL to remove virtual join Reference Link?</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-to-remove-virtual-join-Reference-Link/m-p/236304#M46639</link>
      <description>&lt;P&gt;Does anyone know what the JSL script is to remove a reference link (of a virtual join)?&lt;/P&gt;&lt;P&gt;The link below describes the script to create a Link ID and a reference link. I'd like to write a script that reverses that process.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.jmp.com/support/help/14-2/virtually-join-data-tables-2.shtml" target="_blank"&gt;https://www.jmp.com/support/help/14-2/virtually-join-data-tables-2.shtml&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 23:25:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-to-remove-virtual-join-Reference-Link/m-p/236304#M46639</guid>
      <dc:creator>khusodo</dc:creator>
      <dc:date>2023-06-09T23:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: JSL to remove virtual join Reference Link?</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-to-remove-virtual-join-Reference-Link/m-p/236397#M46655</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/16920"&gt;@khusodo&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;A Link ID is a column property assigned in an auxiliary table.&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;dt1 = Open( "$SAMPLE_DATA/Pizza Profiles.jmp" );
dt1:ID &amp;lt;&amp;lt; Set Property( "Link ID", 1 );
// add Link ID and turn it on&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Link Reference is a column property that "references" the information in the auxiliary table. Both dt1 abd Dt2 must have a column called ID.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;dt2 = Open( "$SAMPLE_DATA/Pizza Responses.jmp" );&lt;BR /&gt;dt2:Choice1 &amp;lt;&amp;lt; Set Property( "Link Reference", Reference Table( "$SAMPLE_DATA/Pizza Profiles.jmp" ) );&lt;BR /&gt;dt2:Choice2 &amp;lt;&amp;lt; Set Property( "Link Reference", Reference Table( "$SAMPLE_DATA/Pizza Profiles.jmp" ) );&lt;BR /&gt;dt2:Choice &amp;lt;&amp;lt; Set Property( "Link Reference", Reference Table( "$SAMPLE_DATA/Pizza Profiles.jmp" ) );&lt;BR /&gt;// add Link Reference to the Choice1, Choice2, and Choice columns&lt;/PRE&gt;
&lt;P&gt;When both tables are open, an interactive analysis directed at the main table will display columns from both the main (dt2) and auxiliary (dt1) tables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Close the auxiliary table, rather than unlinking, especially, if the link might be used later, possibly for a different file.&lt;/LI&gt;
&lt;LI&gt;To remove the links and or references&lt;/LI&gt;
&lt;/OL&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt1:ID &amp;lt;&amp;lt; Set Property("Link ID",0)  ;
dt2:Choice1 &amp;lt;&amp;lt; delete property("Link Reference");
dt2:Choice2 &amp;lt;&amp;lt; delete property("Link Reference");
dt2:Choice &amp;lt;&amp;lt; delete property("Link Reference");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2019 01:59:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-to-remove-virtual-join-Reference-Link/m-p/236397#M46655</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2019-11-26T01:59:15Z</dc:date>
    </item>
  </channel>
</rss>

