<?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: How to use select where to pick up particular range of value? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-use-select-where-to-pick-up-particular-range-of-value/m-p/222397#M44372</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 488px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/18919i7095B9F912A1FEFA/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 20 Aug 2019 14:23:39 GMT</pubDate>
    <dc:creator>uday_guntupalli</dc:creator>
    <dc:date>2019-08-20T14:23:39Z</dc:date>
    <item>
      <title>How to use select where to pick up particular range of value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-select-where-to-pick-up-particular-range-of-value/m-p/221654#M44233</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2019 05:43:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-select-where-to-pick-up-particular-range-of-value/m-p/221654#M44233</guid>
      <dc:creator>almighty22</dc:creator>
      <dc:date>2019-09-04T05:43:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to use select where to pick up particular range of value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-select-where-to-pick-up-particular-range-of-value/m-p/221664#M44234</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/15594"&gt;@almighty22&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; When you say you can't access it , what do you mean ? Do you mean you can't see the table or do you mean the table is not performing the action you expect it to perform ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;It is also possible that you could be opening the tables as invisible or private. So, here is my advice:&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Run the code step by step&lt;/P&gt;&lt;P&gt;2. Identify where the issue is&lt;/P&gt;&lt;P&gt;3. In your response, provide screenshots of what is happening and what you expect to happen&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Alternatively provide random subset of your data or test what you are having problem with using Sample data&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Aug 2019 14:41:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-select-where-to-pick-up-particular-range-of-value/m-p/221664#M44234</guid>
      <dc:creator>uday_guntupalli</dc:creator>
      <dc:date>2019-08-14T14:41:02Z</dc:date>
    </item>
    <item>
      <title>?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-select-where-to-pick-up-particular-range-of-value/m-p/221668#M44236</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2019 05:50:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-select-where-to-pick-up-particular-range-of-value/m-p/221668#M44236</guid>
      <dc:creator>almighty22</dc:creator>
      <dc:date>2019-09-04T05:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to use select where to pick up particular range of value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-select-where-to-pick-up-particular-range-of-value/m-p/221669#M44237</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/15594"&gt;@almighty22&lt;/a&gt;,&lt;BR /&gt;&amp;nbsp; &amp;nbsp;There are many ways to get to what you want. The following is just one:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Current Data Table(); // Get reference to the current data table 

dt &amp;lt;&amp;lt; Select Where(:Name("Freq(Hz)") &amp;gt;= 10 * 10^6 &amp;amp;  :Name("Freq(Hz)") &amp;lt;= 100 * 10^6); 
Wait(0); 

// Approach 1 
dt1 = dt &amp;lt;&amp;lt; Subset(""); &lt;BR /&gt;Current Data Table(dt1);
max_s11 = Col Max(dt1:Name("S11(DB)")); 
min_s11 = Col Min(dt1:Name("S11(DB)")); 
max_s21 = Col Max(dt1:Name("S21(DB)"));
min_s21 = Col Max(dt1:Name("S21(DB)"));

// Check 
Show(max_s11); 
Show(min_s11); 
Show(max_s21); 
Show(min_s21);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;For this to work, you will need to have the data table shown in the screenshot open. If you already have&amp;nbsp; a reference to that datatable, you can just replace that reference in place of dt.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Aug 2019 15:05:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-select-where-to-pick-up-particular-range-of-value/m-p/221669#M44237</guid>
      <dc:creator>uday_guntupalli</dc:creator>
      <dc:date>2019-08-14T15:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to use select where to pick up particular range of value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-select-where-to-pick-up-particular-range-of-value/m-p/221673#M44239</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What if I wanna use the way like this? But when I debug it the issues showing.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2019 05:44:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-select-where-to-pick-up-particular-range-of-value/m-p/221673#M44239</guid>
      <dc:creator>almighty22</dc:creator>
      <dc:date>2019-09-04T05:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to use select where to pick up particular range of value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-select-where-to-pick-up-particular-range-of-value/m-p/221686#M44240</link>
      <description>I think your issue is the col name has those parentheses in it. That is why uday_guntupalli used Name("Freq(Hz)" ) to talk about that column.</description>
      <pubDate>Wed, 14 Aug 2019 15:54:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-select-where-to-pick-up-particular-range-of-value/m-p/221686#M44240</guid>
      <dc:creator>hardner</dc:creator>
      <dc:date>2019-08-14T15:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to use select where to pick up particular range of value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-select-where-to-pick-up-particular-range-of-value/m-p/221687#M44241</link>
      <description>I changed it, but it doesn't work also. The particular range of the frequency for the S11 and S21 didn't not pop out any table :(&lt;/img&gt;</description>
      <pubDate>Wed, 14 Aug 2019 16:00:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-select-where-to-pick-up-particular-range-of-value/m-p/221687#M44241</guid>
      <dc:creator>almighty22</dc:creator>
      <dc:date>2019-08-14T16:00:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to use select where to pick up particular range of value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-select-where-to-pick-up-particular-range-of-value/m-p/221688#M44242</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/15594"&gt;@almighty22&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Can you please provide a copy of your log ? If you wouldn't mind a small subset of your data table as well.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;I don't see a reason for it to fail especially if there is data in that range.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Aug 2019 16:11:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-select-where-to-pick-up-particular-range-of-value/m-p/221688#M44242</guid>
      <dc:creator>uday_guntupalli</dc:creator>
      <dc:date>2019-08-14T16:11:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to use select where to pick up particular range of value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-select-where-to-pick-up-particular-range-of-value/m-p/221760#M44255</link>
      <description>What do you means the log? data table? debug results? or the script?</description>
      <pubDate>Thu, 15 Aug 2019 00:10:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-select-where-to-pick-up-particular-range-of-value/m-p/221760#M44255</guid>
      <dc:creator>almighty22</dc:creator>
      <dc:date>2019-08-15T00:10:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to use select where to pick up particular range of value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-select-where-to-pick-up-particular-range-of-value/m-p/222397#M44372</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 488px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/18919i7095B9F912A1FEFA/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Aug 2019 14:23:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-select-where-to-pick-up-particular-range-of-value/m-p/222397#M44372</guid>
      <dc:creator>uday_guntupalli</dc:creator>
      <dc:date>2019-08-20T14:23:39Z</dc:date>
    </item>
  </channel>
</rss>

