<?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: Deleting rows in JSL in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Deleting-rows-in-JSL/m-p/54447#M30772</link>
    <description>&lt;P&gt;Add the word AS before column:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt2 &amp;lt;&amp;lt; select where (as Column(dt2, Col) &amp;lt; 1);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 04 Apr 2018 14:39:31 GMT</pubDate>
    <dc:creator>pmroz</dc:creator>
    <dc:date>2018-04-04T14:39:31Z</dc:date>
    <item>
      <title>Deleting rows in JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Deleting-rows-in-JSL/m-p/54445#M30771</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;this is a very basic question that has been answered many times, but I can't get it to work.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;&lt;BR /&gt;//Define the column name here first
Col = "mycolumn.xyz";

dt = current data table ();
//Create new table dt2, copy first table dt, sort it by two different columns
dt2 = Data Table( dt ) &amp;lt;&amp;lt; Sort(
	By( :WAFER, Column(dt, Col) ),
	Order( Ascending, Ascending )
);

ColValues = {};
ColValues = Column(dt2, Col) &amp;lt;&amp;lt; Get Values;

//And this is where it fails. 
//Not working:
dt2 &amp;lt;&amp;lt; select where (Column(dt2, Col) &amp;lt; 1);
dt2 &amp;lt;&amp;lt; delete rows;

//This here is working:
dt2 &amp;lt;&amp;lt; select where (:mycolumn.xyz &amp;lt; 1);
dt2 &amp;lt;&amp;lt; delete rows;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;I have tried different methods of Eval(Substitute(Expr(),Expr(),Parse())) but without result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Apr 2018 14:28:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Deleting-rows-in-JSL/m-p/54445#M30771</guid>
      <dc:creator>PS</dc:creator>
      <dc:date>2018-04-04T14:28:14Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting rows in JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Deleting-rows-in-JSL/m-p/54447#M30772</link>
      <description>&lt;P&gt;Add the word AS before column:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt2 &amp;lt;&amp;lt; select where (as Column(dt2, Col) &amp;lt; 1);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 04 Apr 2018 14:39:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Deleting-rows-in-JSL/m-p/54447#M30772</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2018-04-04T14:39:31Z</dc:date>
    </item>
  </channel>
</rss>

