<?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: Add adjusted testnumber column. in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Add-adjusted-testnumber-column/m-p/839231#M101451</link>
    <description>&lt;P&gt;I added it manually. We don't know what data you have available, so I assumed you would be able to access that as it was visible in your sheet which seems to be base for the JMP table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit: It might be possible to add it as a formula but more information of the data might be required for that&lt;/P&gt;</description>
    <pubDate>Mon, 10 Feb 2025 14:06:47 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2025-02-10T14:06:47Z</dc:date>
    <item>
      <title>Add adjusted testnumber column.</title>
      <link>https://community.jmp.com/t5/Discussions/Add-adjusted-testnumber-column/m-p/838213#M101440</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ConfidenceOwl94_0-1739131842217.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/72705i4E7A7FD7E298838D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ConfidenceOwl94_0-1739131842217.png" alt="ConfidenceOwl94_0-1739131842217.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I am not sure this is even possible. I do have test time stamp but they are not accurate.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I like to add a test number column, but for the retested parts i want test number 2 not 1.&lt;/P&gt;</description>
      <pubDate>Sun, 09 Feb 2025 20:16:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Add-adjusted-testnumber-column/m-p/838213#M101440</guid>
      <dc:creator>ConfidenceOwl94</dc:creator>
      <dc:date>2025-02-09T20:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: Add adjusted testnumber column.</title>
      <link>https://community.jmp.com/t5/Discussions/Add-adjusted-testnumber-column/m-p/838224#M101441</link>
      <description>&lt;P&gt;One option is to add testnumber to your data table, sort your data and&amp;nbsp;utilize that&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Col Cumulative Sum(If(Row() == Col Min(Row(), :testnr, :Serial Number), 1, 0), :Serial Number)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1739133273054.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/72706i772999AA71AA6015/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1739133273054.png" alt="jthi_0-1739133273054.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 09 Feb 2025 20:35:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Add-adjusted-testnumber-column/m-p/838224#M101441</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-02-09T20:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: Add adjusted testnumber column.</title>
      <link>https://community.jmp.com/t5/Discussions/Add-adjusted-testnumber-column/m-p/838333#M101442</link>
      <description>&lt;P&gt;Thanks Jarmo,&lt;/P&gt;&lt;P&gt;How did you added Testnr column? manually?&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2025 01:15:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Add-adjusted-testnumber-column/m-p/838333#M101442</guid>
      <dc:creator>ConfidenceOwl94</dc:creator>
      <dc:date>2025-02-10T01:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: Add adjusted testnumber column.</title>
      <link>https://community.jmp.com/t5/Discussions/Add-adjusted-testnumber-column/m-p/838467#M101443</link>
      <description>&lt;P&gt;I am sure that Jarmo added it manually.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;JSL to create the new column would be:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

Current Data Table() &amp;lt;&amp;lt; New Column( "Column 6",
	formula(
		Col Cumulative Sum(
			If( Row() == Col Min( Row(), :testnr, :Serial Number ),
				1,
				0
			),
			:Serial Number
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 10 Feb 2025 02:37:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Add-adjusted-testnumber-column/m-p/838467#M101443</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2025-02-10T02:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: Add adjusted testnumber column.</title>
      <link>https://community.jmp.com/t5/Discussions/Add-adjusted-testnumber-column/m-p/839230#M101450</link>
      <description>&lt;P&gt;Thanks Jim,&lt;/P&gt;&lt;P&gt;I am talking about 'Testnr' Column. He used that in Column 6 formula.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ConfidenceOwl94_0-1739196180226.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/72771i6BC15267785C7B75/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ConfidenceOwl94_0-1739196180226.png" alt="ConfidenceOwl94_0-1739196180226.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2025 14:03:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Add-adjusted-testnumber-column/m-p/839230#M101450</guid>
      <dc:creator>ConfidenceOwl94</dc:creator>
      <dc:date>2025-02-10T14:03:08Z</dc:date>
    </item>
    <item>
      <title>Re: Add adjusted testnumber column.</title>
      <link>https://community.jmp.com/t5/Discussions/Add-adjusted-testnumber-column/m-p/839231#M101451</link>
      <description>&lt;P&gt;I added it manually. We don't know what data you have available, so I assumed you would be able to access that as it was visible in your sheet which seems to be base for the JMP table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit: It might be possible to add it as a formula but more information of the data might be required for that&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2025 14:06:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Add-adjusted-testnumber-column/m-p/839231#M101451</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-02-10T14:06:47Z</dc:date>
    </item>
  </channel>
</rss>

