<?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: Error Message &amp;quot;Please select the rows to be deleted&amp;quot; in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Error-Message-quot-Please-select-the-rows-to-be-deleted-quot/m-p/422752#M67187</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Markbailey, Jim,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;There is no rows selected as&amp;nbsp;there are no values of Tcount greater than 40.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;Is there a way to avoid see this error?&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 30 Sep 2021 23:20:55 GMT</pubDate>
    <dc:creator>bzanos</dc:creator>
    <dc:date>2021-09-30T23:20:55Z</dc:date>
    <item>
      <title>Error Message "Please select the rows to be deleted"</title>
      <link>https://community.jmp.com/t5/Discussions/Error-Message-quot-Please-select-the-rows-to-be-deleted-quot/m-p/422533#M67162</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;when I am running JSL script, there is message in the log,&amp;nbsp; "&lt;STRONG&gt;Please select the rows to be deleted&lt;/STRONG&gt;".&lt;/P&gt;&lt;P&gt;But the script is still running. I could identify anything error in my code.&lt;/P&gt;&lt;P&gt;Does anyone know what will cause this error?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt1 &amp;lt;&amp;lt; Select Where(:Tcount &amp;gt; 40);
dt1 &amp;lt;&amp;lt; Delete Rows;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 09 Jun 2023 19:58:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Error-Message-quot-Please-select-the-rows-to-be-deleted-quot/m-p/422533#M67162</guid>
      <dc:creator>bzanos</dc:creator>
      <dc:date>2023-06-09T19:58:09Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message "Please select the rows to be deleted"</title>
      <link>https://community.jmp.com/t5/Discussions/Error-Message-quot-Please-select-the-rows-to-be-deleted-quot/m-p/422540#M67163</link>
      <description>&lt;P&gt;How many rows are selected after running the first line?&lt;/P&gt;</description>
      <pubDate>Thu, 30 Sep 2021 14:30:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Error-Message-quot-Please-select-the-rows-to-be-deleted-quot/m-p/422540#M67163</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2021-09-30T14:30:33Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message "Please select the rows to be deleted"</title>
      <link>https://community.jmp.com/t5/Discussions/Error-Message-quot-Please-select-the-rows-to-be-deleted-quot/m-p/422541#M67164</link>
      <description>&lt;P&gt;My initial guess is that there are no rows selected because there are no values of Tcount greater than 40.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Sep 2021 14:31:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Error-Message-quot-Please-select-the-rows-to-be-deleted-quot/m-p/422541#M67164</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-09-30T14:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message "Please select the rows to be deleted"</title>
      <link>https://community.jmp.com/t5/Discussions/Error-Message-quot-Please-select-the-rows-to-be-deleted-quot/m-p/422752#M67187</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Markbailey, Jim,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;There is no rows selected as&amp;nbsp;there are no values of Tcount greater than 40.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;Is there a way to avoid see this error?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Sep 2021 23:20:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Error-Message-quot-Please-select-the-rows-to-be-deleted-quot/m-p/422752#M67187</guid>
      <dc:creator>bzanos</dc:creator>
      <dc:date>2021-09-30T23:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message "Please select the rows to be deleted"</title>
      <link>https://community.jmp.com/t5/Discussions/Error-Message-quot-Please-select-the-rows-to-be-deleted-quot/m-p/422771#M67189</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Try( dt1 &amp;lt;&amp;lt; Delete Rows );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;If( dt &amp;lt;&amp;lt; get selected rows &amp;gt; 0,
     dt1 &amp;lt;&amp;lt; Delete Rows;
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 01 Oct 2021 01:42:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Error-Message-quot-Please-select-the-rows-to-be-deleted-quot/m-p/422771#M67189</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-10-01T01:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: Error Message "Please select the rows to be deleted"</title>
      <link>https://community.jmp.com/t5/Discussions/Error-Message-quot-Please-select-the-rows-to-be-deleted-quot/m-p/422883#M67201</link>
      <description>&lt;P&gt;Thanks Jim&lt;/P&gt;</description>
      <pubDate>Fri, 01 Oct 2021 14:13:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Error-Message-quot-Please-select-the-rows-to-be-deleted-quot/m-p/422883#M67201</guid>
      <dc:creator>bzanos</dc:creator>
      <dc:date>2021-10-01T14:13:17Z</dc:date>
    </item>
  </channel>
</rss>

