<?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: Name Selection in Column - Highlight a reticle on wafer in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Name-Selection-in-Column/m-p/624617#M82338</link>
    <description>&lt;P&gt;.&lt;/P&gt;</description>
    <pubDate>Fri, 21 Apr 2023 19:10:26 GMT</pubDate>
    <dc:creator>Jackie_</dc:creator>
    <dc:date>2023-04-21T19:10:26Z</dc:date>
    <item>
      <title>Name Selection in Column -</title>
      <link>https://community.jmp.com/t5/Discussions/Name-Selection-in-Column/m-p/624451#M82319</link>
      <description>&lt;P&gt;Hello JMP Community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A bit challenging problem - I am trying to select Name Selection in Column&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;matrix [X,Y] of 26 x 29 points.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create a Column in the data table and highlight them as below&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Jackie__2-1682012460542.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/52159i187B0106CD8669B5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Jackie__2-1682012460542.png" alt="Jackie__2-1682012460542.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Is there a way to Name all the with jsl instead of manually selecting and naming them?&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have attached the XY table&lt;/P&gt;&lt;P&gt;Any suggestions would be much appreciated :)&lt;/img&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot,&lt;/P&gt;&lt;P&gt;The best community&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 16:08:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Name-Selection-in-Column/m-p/624451#M82319</guid>
      <dc:creator>Jackie_</dc:creator>
      <dc:date>2023-06-09T16:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: Name Selection in Column - Highlight a reticle on wafer</title>
      <link>https://community.jmp.com/t5/Discussions/Name-Selection-in-Column/m-p/624474#M82320</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/3552"&gt;@brady_brady&lt;/a&gt;&amp;nbsp; only you could suggest&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 19:31:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Name-Selection-in-Column/m-p/624474#M82320</guid>
      <dc:creator>Jackie_</dc:creator>
      <dc:date>2023-04-20T19:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: Name Selection in Column - Highlight a reticle on wafer</title>
      <link>https://community.jmp.com/t5/Discussions/Name-Selection-in-Column/m-p/624548#M82325</link>
      <description>&lt;P&gt;Hi Jackie,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is much more work to do this numbering reticles 1, 2, 3, ..., but it is easy if the reticles are labeled with an X_Y, where&amp;nbsp; all reticles in the same column will have the same X, and all reticles in the same row will have the same Y. In this way, the X_Y label for the reticle contains meaningful location information, just as the actual X Coord and Y Coord contain meaningful location information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In this case you can use a formula:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Char( 
	Ceiling( (((:X coord + 26) - 23) + 1) / 26 ) 
)
 || "_" || 
 Char(
	Ceiling( (((:Y coord + 29) - 31) + 1) / 29 )
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Let's explain:&lt;/P&gt;
&lt;P&gt;In the first part, we use 26 in two places because 26 is the width of a reticle. In the second part of the formula, we use 29 in two spots because 29 is the height of a reticle.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We use the values "1" to adjust after subtraction.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now the offsets: In the first part, we use 23, because this is the lower x boundary of those reticles lying furthest to the left, that have at least SOME of their left edge on the wafer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Likewise, we use 31 in the second part, because this is the upper y boundary (since we are using reversed y-axis convention) of those reticles lying furthest to the top, that have at least SOME of their top edge on the wafer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using this formula, and a global (not local) data filter on the table, along with your graph, we see that the naming convention allows you to select individual reticles as needed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have attached your table with the formula column and data filter script included so you can try this out. Hopefully this works well for you. If you still need to number the reticles 1, 2, 3,&amp;nbsp; you can do this afterward by sorting the table, summarizing it, and numbering consecutively, ignoring reticles with no dice on the wafer. Hopefully you will not even have to do this, and the naming convention will be OK for you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Brady&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="brady_brady_0-1682022580183.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/52172i58F6D96A6A40F948/image-size/large?v=v2&amp;amp;px=999" role="button" title="brady_brady_0-1682022580183.png" alt="brady_brady_0-1682022580183.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 20:54:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Name-Selection-in-Column/m-p/624548#M82325</guid>
      <dc:creator>brady_brady</dc:creator>
      <dc:date>2023-04-20T20:54:33Z</dc:date>
    </item>
    <item>
      <title>Re: Name Selection in Column - Highlight a reticle on wafer</title>
      <link>https://community.jmp.com/t5/Discussions/Name-Selection-in-Column/m-p/624597#M82336</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi Brady, this is great, and Thanks a lot :)&lt;/img&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 23:51:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Name-Selection-in-Column/m-p/624597#M82336</guid>
      <dc:creator>Jackie_</dc:creator>
      <dc:date>2023-04-20T23:51:02Z</dc:date>
    </item>
    <item>
      <title>Re: Name Selection in Column - Highlight a reticle on wafer</title>
      <link>https://community.jmp.com/t5/Discussions/Name-Selection-in-Column/m-p/624617#M82338</link>
      <description>&lt;P&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2023 19:10:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Name-Selection-in-Column/m-p/624617#M82338</guid>
      <dc:creator>Jackie_</dc:creator>
      <dc:date>2023-04-21T19:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: Name Selection in Column - Highlight a reticle on wafer</title>
      <link>https://community.jmp.com/t5/Discussions/Name-Selection-in-Column/m-p/641058#M83827</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/3552"&gt;@brady_brady&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope you are doing well!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a quick question regarding the offset part - Is there a way to find the offset value&amp;nbsp;for the&lt;SPAN&gt;&amp;nbsp;lower x/y boundary of those reticles lying furthest to the left/top by calculation/automatically instead of finding&amp;nbsp;it manually?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I would really appreciate your&amp;nbsp;&lt;/SPAN&gt;response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Jackie&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 14:09:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Name-Selection-in-Column/m-p/641058#M83827</guid>
      <dc:creator>Jackie_</dc:creator>
      <dc:date>2023-06-10T14:09:38Z</dc:date>
    </item>
  </channel>
</rss>

