<?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: Summary Table For Earliest Test in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Summary-Table-For-Earliest-Test/m-p/857845#M102723</link>
    <description>&lt;P&gt;Can you provide example dataset? Most likely you can calculate test count for each parameter and then pick 1 from all of the parameters&lt;/P&gt;</description>
    <pubDate>Fri, 28 Mar 2025 20:15:52 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2025-03-28T20:15:52Z</dc:date>
    <item>
      <title>Summary Table For Earliest Test</title>
      <link>https://community.jmp.com/t5/Discussions/Summary-Table-For-Earliest-Test/m-p/857803#M102721</link>
      <description>&lt;P&gt;I'm creating a summary table for some data whereby a group of wafers were tested more than once.&amp;nbsp; The data is messy regarding which test iteration a particular parameter was measured.&amp;nbsp; I want the ultimate table to record only the earliest instance of the test for each wafer/die.&amp;nbsp; I have a retest iteration column in the table I can use as a subgroup on the table but I don't know how to use that to make the collapse to earliest.&amp;nbsp; The image below shows a wafer/die combination that tested 4 times.&amp;nbsp; The parameter of interest was tested on iteration2 and 3 for some and iteration 3 and 4 for another.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SpannerHead_0-1743191982324.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/74353iCE648656B2736EF1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SpannerHead_0-1743191982324.png" alt="SpannerHead_0-1743191982324.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Mar 2025 20:01:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Summary-Table-For-Earliest-Test/m-p/857803#M102721</guid>
      <dc:creator>SpannerHead</dc:creator>
      <dc:date>2025-03-28T20:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: Summary Table For Earliest Test</title>
      <link>https://community.jmp.com/t5/Discussions/Summary-Table-For-Earliest-Test/m-p/857845#M102723</link>
      <description>&lt;P&gt;Can you provide example dataset? Most likely you can calculate test count for each parameter and then pick 1 from all of the parameters&lt;/P&gt;</description>
      <pubDate>Fri, 28 Mar 2025 20:15:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Summary-Table-For-Earliest-Test/m-p/857845#M102723</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-03-28T20:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Summary Table For Earliest Test</title>
      <link>https://community.jmp.com/t5/Discussions/Summary-Table-For-Earliest-Test/m-p/857850#M102725</link>
      <description>&lt;P&gt;Given this data table&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1743193553454.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/74361i4A872E70377BBA3B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1743193553454.png" alt="txnelson_0-1743193553454.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Using this formula&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;mat = Matrix( :age ) || Matrix( :height ) || Matrix( :weight );
mat[Loc( mat )[1]];&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;it has the results&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_1-1743193626650.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/74362i49768C1FA7DDF46A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_1-1743193626650.png" alt="txnelson_1-1743193626650.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Mar 2025 20:27:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Summary-Table-For-Earliest-Test/m-p/857850#M102725</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2025-03-28T20:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: Summary Table For Earliest Test</title>
      <link>https://community.jmp.com/t5/Discussions/Summary-Table-For-Earliest-Test/m-p/863967#M102787</link>
      <description>&lt;P&gt;I got this to work with added columns.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;New Column( "Initial LRS2",
	Numeric,
	"Continuous",
	Format( "Best", 12 ),
	Formula(
		If(
			!Is Missing( :LRS2 ) &amp;amp; :RETEST ==
			Col Minimum( :RETEST, :WAFER, :sitex, :sitey ),
			:LRS2
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Apr 2025 13:29:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Summary-Table-For-Earliest-Test/m-p/863967#M102787</guid>
      <dc:creator>SpannerHead</dc:creator>
      <dc:date>2025-04-01T13:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: Summary Table For Earliest Test</title>
      <link>https://community.jmp.com/t5/Discussions/Summary-Table-For-Earliest-Test/m-p/868214#M103121</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;If you're looking for a ready-to-use solution, there's a short tutorial on Retest Algorithm of YieldOptiX that shows how to extract the earliest test (or similar operations) without scripting&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=cv8SBoM15W4" target="_blank"&gt;https://www.youtube.com/watch?v=cv8SBoM15W4&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Just thought I’d share in case that approach saves you time&lt;/P&gt;</description>
      <pubDate>Mon, 14 Apr 2025 23:08:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Summary-Table-For-Earliest-Test/m-p/868214#M103121</guid>
      <dc:creator>PercentileSeal4</dc:creator>
      <dc:date>2025-04-14T23:08:49Z</dc:date>
    </item>
  </channel>
</rss>

