<?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: Exclude rows from linked Summary table in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Exclude-rows-from-linked-Summary-table/m-p/52382#M29655</link>
    <description>Thank you for the quick response. I had tried Select Where earlier but had the wrong syntax. Appreciate the help!&lt;BR /&gt;&lt;BR /&gt;-Ry</description>
    <pubDate>Wed, 28 Feb 2018 20:33:53 GMT</pubDate>
    <dc:creator>RyMcQeN</dc:creator>
    <dc:date>2018-02-28T20:33:53Z</dc:date>
    <item>
      <title>Exclude rows from linked Summary table</title>
      <link>https://community.jmp.com/t5/Discussions/Exclude-rows-from-linked-Summary-table/m-p/52350#M29635</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a linked summary table that I am trying to exclude rows based on some criteria of the cell contents for specific columns.&amp;nbsp; The objective is for the rows in the linked table to also become excluded.&amp;nbsp; I know it is possible to do this outside of JMP scripting but for some reason I get an error in JSL.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dtSummary = dt &amp;lt;&amp;lt; Summary( Group(:age), Link to original data table(1));
r = dtSummary &amp;lt;&amp;lt; Get Rows Where(:age == 14);
r &amp;lt;&amp;lt; Exclude;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My actual code has more complicated row selection criteria but the above example has the same idea.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The error returned is:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ERROR: Send Expects Scriptable Object in access or evaluation of 'Send' , r &amp;lt;&amp;lt; Exclude;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I appreciate any help in advance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thx,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ry&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2018 18:42:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Exclude-rows-from-linked-Summary-table/m-p/52350#M29635</guid>
      <dc:creator>RyMcQeN</dc:creator>
      <dc:date>2018-02-28T18:42:03Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude rows from linked Summary table</title>
      <link>https://community.jmp.com/t5/Discussions/Exclude-rows-from-linked-Summary-table/m-p/52353#M29638</link>
      <description>&lt;P&gt;Change "Get Rows Where" to "Select Where"&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dtSummary = dt &amp;lt;&amp;lt; Summary( Group(:age), Link to original data table(1));
r = dtSummary &amp;lt;&amp;lt; Select Where(:age == 14);
r &amp;lt;&amp;lt; Exclude;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This worked on my end.&amp;nbsp; Better yet, you can do it this way:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dtSummary &amp;lt;&amp;lt; Select Where(:age == 14) &amp;lt;&amp;lt; Exclude;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Get Rows Where() returns a list or the row numbers that meet the criteria.&amp;nbsp;&amp;nbsp;Sending an Exclude message to a list of numbers doesn't do anything, so that's why it wasn't working.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2018 18:40:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Exclude-rows-from-linked-Summary-table/m-p/52353#M29638</guid>
      <dc:creator>cwillden</dc:creator>
      <dc:date>2018-02-28T18:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude rows from linked Summary table</title>
      <link>https://community.jmp.com/t5/Discussions/Exclude-rows-from-linked-Summary-table/m-p/52382#M29655</link>
      <description>Thank you for the quick response. I had tried Select Where earlier but had the wrong syntax. Appreciate the help!&lt;BR /&gt;&lt;BR /&gt;-Ry</description>
      <pubDate>Wed, 28 Feb 2018 20:33:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Exclude-rows-from-linked-Summary-table/m-p/52382#M29655</guid>
      <dc:creator>RyMcQeN</dc:creator>
      <dc:date>2018-02-28T20:33:53Z</dc:date>
    </item>
  </channel>
</rss>

