<?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: Change Values in a Column in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Change-Values-in-a-Column/m-p/108003#M39300</link>
    <description>&lt;P&gt;As written r and s should be the same rows. Get r , the index of rows where :testname == "test1", and use it for both columns channel and mode.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also if using JMP13 or later, this syntax could save time.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;r = dt &amp;lt;&amp;lt;  Get Rows Where( :testname == "test1" );

dt[r,{"channel","mode"}] = "N/A (test1)";
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 25 Jan 2019 13:56:11 GMT</pubDate>
    <dc:creator>gzmorgan0</dc:creator>
    <dc:date>2019-01-25T13:56:11Z</dc:date>
    <item>
      <title>Change Values in a Column</title>
      <link>https://community.jmp.com/t5/Discussions/Change-Values-in-a-Column/m-p/107999#M39297</link>
      <description>&lt;P&gt;I found a script that works well however the time it takes to parse at minimum of 80,000 rows is quite long. This is only 1 wafers worth of data and there is an option to add an entire lot ( 7 more wafers). Which the time it takes to change the values will increase by a lot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;	r = dt &amp;lt;&amp;lt;  Get Rows Where( :testname == "test1" );
	Column( dt, "channel" )[r] = "N/A (test1)";
		
	s = dt &amp;lt;&amp;lt;  Get Rows Where( :testname == "test1" );
	Column( dt, "mode" )[s] = "N/A (test1)";	
	
	t = dt &amp;lt;&amp;lt;  Get Rows Where( :testname == "test2" );
	Column( dt, "mode" )[t] = "N/A (test2)";	&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 25 Jan 2019 13:24:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-Values-in-a-Column/m-p/107999#M39297</guid>
      <dc:creator>Yngeinstn</dc:creator>
      <dc:date>2019-01-25T13:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: Change Values in a Column</title>
      <link>https://community.jmp.com/t5/Discussions/Change-Values-in-a-Column/m-p/108001#M39299</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/11704"&gt;@Yngeinstn&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;	r = dt &amp;lt;&amp;lt;  Get Rows Where( :testname == "test1" );
	Column( dt, "channel" )[r] = "N/A (test1)";
		
	s = dt &amp;lt;&amp;lt;  Get Rows Where( :testname == "test1" );
	Column( dt, "mode" )[s] = "N/A (test1)";	
	
	t = dt &amp;lt;&amp;lt;  Get Rows Where( :testname == "test2" );
	Column( dt, "mode" )[t] = "N/A (test2)";	
	
	// Alternative Approach 
	r = dt &amp;lt;&amp;lt;  Get Rows Where( :testname == "test1" );
	dt[r,"channel"] = "N/A (test1)";
		
	s = dt &amp;lt;&amp;lt;  Get Rows Where( :testname == "test1" );
	dt[s,"mode"] = "N/A (test1)";	
	
	t = dt &amp;lt;&amp;lt;  Get Rows Where( :testname == "test2" );
	dt[t,"mode"] = "N/A (test2)";	
	&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 25 Jan 2019 13:44:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-Values-in-a-Column/m-p/108001#M39299</guid>
      <dc:creator>uday_guntupalli</dc:creator>
      <dc:date>2019-01-25T13:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Change Values in a Column</title>
      <link>https://community.jmp.com/t5/Discussions/Change-Values-in-a-Column/m-p/108003#M39300</link>
      <description>&lt;P&gt;As written r and s should be the same rows. Get r , the index of rows where :testname == "test1", and use it for both columns channel and mode.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also if using JMP13 or later, this syntax could save time.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;r = dt &amp;lt;&amp;lt;  Get Rows Where( :testname == "test1" );

dt[r,{"channel","mode"}] = "N/A (test1)";
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jan 2019 13:56:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-Values-in-a-Column/m-p/108003#M39300</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2019-01-25T13:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: Change Values in a Column</title>
      <link>https://community.jmp.com/t5/Discussions/Change-Values-in-a-Column/m-p/108021#M39306</link>
      <description>Thank you for the quick response. I will try this asap.</description>
      <pubDate>Fri, 25 Jan 2019 19:16:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-Values-in-a-Column/m-p/108021#M39306</guid>
      <dc:creator>Yngeinstn</dc:creator>
      <dc:date>2019-01-25T19:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: Change Values in a Column</title>
      <link>https://community.jmp.com/t5/Discussions/Change-Values-in-a-Column/m-p/108022#M39307</link>
      <description>&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jan 2019 19:17:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-Values-in-a-Column/m-p/108022#M39307</guid>
      <dc:creator>Yngeinstn</dc:creator>
      <dc:date>2019-01-25T19:17:38Z</dc:date>
    </item>
  </channel>
</rss>

