<?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: Unlinking tables in JSL in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Unlinking-tables-in-JSL/m-p/2939#M2939</link>
    <description>I bet that would work! Thanks!</description>
    <pubDate>Mon, 14 Feb 2011 15:33:14 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2011-02-14T15:33:14Z</dc:date>
    <item>
      <title>Unlinking tables in JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Unlinking-tables-in-JSL/m-p/2935#M2935</link>
      <description>Maybe I'm just slow today, but I can't figure this out.  All I want to do is create a summary table (or some sort of linked table) and close the original table without closing the linked table.  Any ideas?&lt;BR /&gt;&lt;BR /&gt;Example:&lt;BR /&gt;&lt;BR /&gt;dt = New Table( "beer",&lt;BR /&gt;	Add Rows( 4 ),&lt;BR /&gt;	New Column( "Group",&lt;BR /&gt;		Character,&lt;BR /&gt;		Nominal,&lt;BR /&gt;		Set Values( {"dark lager", "dark lager", "garbage", "garbage"} )&lt;BR /&gt;	),&lt;BR /&gt;	New Column( "Beer",&lt;BR /&gt;		Character,&lt;BR /&gt;		Nominal,&lt;BR /&gt;		Set Values(&lt;BR /&gt;			{"schwarzbier", "munich dunkel", "light american lager", "malt liquor"}&lt;BR /&gt;		)&lt;BR /&gt;	),&lt;BR /&gt;	Set Row States( [0, 0, 1, 0] )&lt;BR /&gt;);&lt;BR /&gt;&lt;BR /&gt;bob = dt &amp;lt;&amp;lt; Summary( Group( :Group ) );&lt;BR /&gt;&lt;BR /&gt;close(dt,no save);</description>
      <pubDate>Fri, 11 Feb 2011 17:55:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Unlinking-tables-in-JSL/m-p/2935#M2935</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-02-11T17:55:22Z</dc:date>
    </item>
    <item>
      <title>Re: Unlinking tables in JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Unlinking-tables-in-JSL/m-p/2936#M2936</link>
      <description>Never mind.  I figured it out.  I was searching for "unlink" in the Scripting Guide.  Searching for "Link" led me to it eventually.&lt;BR /&gt;&lt;BR /&gt;By default, a summary table is linked to the original data table. If you want to produce a summary that is not linked to the original data table, add this option to your Summary message:&lt;BR /&gt;&lt;BR /&gt;summDt &amp;lt;&amp;lt; Summary( Group( col ), Mean( :height ),&lt;BR /&gt;Link to original data table( 0 )&lt;BR /&gt;);</description>
      <pubDate>Fri, 11 Feb 2011 17:58:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Unlinking-tables-in-JSL/m-p/2936#M2936</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-02-11T17:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: Unlinking tables in JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Unlinking-tables-in-JSL/m-p/2937#M2937</link>
      <description>Looks like this is a new function for JMP 9, which I use most of the time. I have a couple scripts I share with JMP 8 users.  Anyone know how to do it in JMP 8?</description>
      <pubDate>Fri, 11 Feb 2011 18:01:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Unlinking-tables-in-JSL/m-p/2937#M2937</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-02-11T18:01:53Z</dc:date>
    </item>
    <item>
      <title>Re: Unlinking tables in JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Unlinking-tables-in-JSL/m-p/2938#M2938</link>
      <description>Something like this might do:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;dt&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;=&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: rgb(0, 0, 221);"&amp;gt;New&lt;BR /&gt;Table&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;(&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: purple;"&amp;gt;"beer"&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;SPAN&gt;&lt;BR /&gt; style=""&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;Add&lt;BR /&gt;Rows&lt;B&gt;(&lt;/B&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: teal;"&amp;gt;4&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;&lt;B&gt;)&lt;/B&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;SPAN&gt;&lt;BR /&gt; style=""&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: rgb(0, 0, 221);"&amp;gt;New&lt;BR /&gt;Column&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;(&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: purple;"&amp;gt;"Group"&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;SPAN&gt;&lt;BR /&gt; style=""&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;Character&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;SPAN&gt;&lt;BR /&gt; style=""&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;Nominal&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;SPAN&gt;&lt;BR /&gt; style=""&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;Set&lt;BR /&gt;Values&lt;B&gt;(&lt;/B&gt;&lt;BR /&gt;&lt;B&gt;{&lt;/B&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: purple;"&amp;gt;"dark&lt;BR /&gt;lager"&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: purple;"&amp;gt;"dark&lt;BR /&gt;lager"&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: purple;"&amp;gt;"garbage"&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: purple;"&amp;gt;"garbage"&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;}&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;&lt;B&gt;)&lt;/B&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;SPAN&gt;&lt;BR /&gt; style=""&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;B&gt;)&lt;/B&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;SPAN&gt;&lt;BR /&gt; style=""&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: rgb(0, 0, 221);"&amp;gt;New&lt;BR /&gt;Column&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;(&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: purple;"&amp;gt;"Beer"&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;SPAN&gt;&lt;BR /&gt; style=""&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;Character&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;SPAN&gt;&lt;BR /&gt; style=""&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;Nominal&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;SPAN&gt;&lt;BR /&gt; style=""&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;Set&lt;BR /&gt;Values&lt;B&gt;(&lt;/B&gt;&lt;BR /&gt;&lt;B&gt;{&lt;/B&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: purple;"&amp;gt;"schwarzbier"&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: purple;"&amp;gt;"munich&lt;BR /&gt;dunkel"&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: purple;"&amp;gt;"light&lt;BR /&gt;american lager"&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: purple;"&amp;gt;"malt&lt;BR /&gt;liquor"&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;}&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;&lt;B&gt;)&lt;/B&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;SPAN&gt;&lt;BR /&gt; style=""&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;B&gt;)&lt;/B&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;SPAN&gt;&lt;BR /&gt; style=""&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;Set&lt;BR /&gt;Row States&lt;B&gt;(&lt;/B&gt;&lt;BR /&gt;&lt;B&gt;[&lt;/B&gt;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: teal;"&amp;gt;0&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: teal;"&amp;gt;0&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: teal;"&amp;gt;1&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: teal;"&amp;gt;0&lt;/SPAN&gt;&lt;/B&gt;&lt;B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;]&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;&lt;B&gt;)&lt;/B&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;)&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;bob&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;=&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;dt &lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;&amp;lt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;Summary&lt;B&gt;(&lt;/B&gt;&lt;BR /&gt;Group&lt;B&gt;(&lt;/B&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;:&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;Group&lt;BR /&gt;&lt;B&gt;)&lt;/B&gt;&lt;BR /&gt;&lt;B&gt;)&lt;/B&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;bob&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;&amp;lt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;Subset&lt;B&gt;(&lt;/B&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;SPAN&gt;&lt;BR /&gt; style=""&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;Output&lt;BR /&gt;Table&lt;B&gt;(&lt;/B&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: purple;"&amp;gt;"Beer&lt;BR /&gt;Summary"&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;&lt;B&gt;)&lt;/B&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;SPAN&gt;&lt;BR /&gt; style=""&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;Copy&lt;BR /&gt;formula&lt;B&gt;(&lt;/B&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: teal;"&amp;gt;0&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;&lt;B&gt;)&lt;/B&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;)&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: navy;"&amp;gt;;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; font-family: "Courier New"; color: black;"&amp;gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; line-height: 115%; font-family: "Courier New"; color: rgb(0, 0, 221);"&amp;gt;Close&lt;/SPAN&gt;&lt;B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; line-height: 115%; font-family: "Courier New"; color: black;"&amp;gt;(&lt;/SPAN&gt;&lt;/B&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; line-height: 115%; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;dt&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; line-height: 115%; font-family: "Courier New"; color: navy;"&amp;gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; line-height: 115%; font-family: "Courier New"; color: black;"&amp;gt;&lt;BR /&gt;no save &lt;B&gt;)&lt;/B&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-size: 10pt; line-height: 115%; font-family: "Courier New"; color: navy;"&amp;gt;;&lt;/SPAN&gt;</description>
      <pubDate>Mon, 14 Feb 2011 15:21:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Unlinking-tables-in-JSL/m-p/2938#M2938</guid>
      <dc:creator>mpb</dc:creator>
      <dc:date>2011-02-14T15:21:33Z</dc:date>
    </item>
    <item>
      <title>Re: Unlinking tables in JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Unlinking-tables-in-JSL/m-p/2939#M2939</link>
      <description>I bet that would work! Thanks!</description>
      <pubDate>Mon, 14 Feb 2011 15:33:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Unlinking-tables-in-JSL/m-p/2939#M2939</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-02-14T15:33:14Z</dc:date>
    </item>
  </channel>
</rss>

