<?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: JMP Scripting- How to change the value of a &amp;quot;cell&amp;quot; in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/15793#M14433</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all.&lt;/P&gt;&lt;P&gt;The what I am trying to do is change the value of a cell&amp;nbsp; of a column that contains a formula.&lt;/P&gt;&lt;P&gt;The Big Class column "Age" is not from a formula so all these suggestions work to change the value of a cell.&lt;/P&gt;&lt;P&gt;I have a column, call it "Test," that uses the match formula. Is there a way to script it to change the value of a cell in that column to zero if the match formula calculates it as negative? I want to be able to force the value to zero if it is negative. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Dec 2015 21:12:34 GMT</pubDate>
    <dc:creator>rebecca-maceach</dc:creator>
    <dc:date>2015-12-07T21:12:34Z</dc:date>
    <item>
      <title>JMP Scripting- How to change the value of a "cell"</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/15788#M14428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;I am wondering how to script it to change the value of a "cell" that is a result of a calculation in the script. &lt;/P&gt;&lt;P&gt;Specifically, I want to be able to change a value of a cell to "0" if the calculated value is negative while leaving all other "cells" alone. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even if it needs to be in a new column, that is fine. For example, If i have my column of calculated values and the one I care about is negative, create a new column that would just say "0" for that "cell."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Dec 2015 19:36:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/15788#M14428</guid>
      <dc:creator>rebecca-maceach</dc:creator>
      <dc:date>2015-12-04T19:36:26Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Scripting- How to change the value of a "cell"</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/15789#M14429</link>
      <description>&lt;P&gt;Here is an example of how to conditionally change a cell when copying to a new column:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
col = dt &amp;lt;&amp;lt; New Column( "New Column", Formula( If( :age &amp;lt; 14, 0, :age ) ) );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;In your case, you would change the condition to be less than zero rather than 14.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jul 2017 20:36:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/15789#M14429</guid>
      <dc:creator>Justin_Chilton</dc:creator>
      <dc:date>2017-07-21T20:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Scripting- How to change the value of a "cell"</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/15790#M14430</link>
      <description>&lt;P&gt;Rebecca,&lt;/P&gt;
&lt;P&gt;I am wondering if what you are asking needs to be explained at a more basic level than how Justin showed.&amp;nbsp; His example does give you an answer, however, the way you described your problem, I can speculate on scenarios where the components of your conditional statement may be coming from sources other than from the current data table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One of the basics in a JMP data table, is that any cell is directly addressable.&amp;nbsp; Using the data table from Justin's answer, any of the cells can be accessed by just specifying the column name and row number.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;&amp;nbsp; :Age[1]&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;points to the first rows value for the column Age.&amp;nbsp; A more correct way to reference it, is to use the data table pointer (data table namespace).&amp;nbsp; So if the pointer to the data table as specified in Justin's response is "dt" then&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; dt:Age[1]&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;is the more proper form.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Taking Justin's example, we could actually change the values in place and not have to create a new column.&amp;nbsp; The following code will do that&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
For( I = 1, I &amp;lt;= N Rows( dt ), I++,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(dt:Age &amp;lt; 14,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dt:Age = 0
&amp;nbsp;&amp;nbsp;&amp;nbsp; );
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jul 2017 20:39:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/15790#M14430</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-07-21T20:39:53Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Scripting- How to change the value of a "cell"</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/15791#M14431</link>
      <description>&lt;P&gt;And building on Jim's reply, it's generally considered good practice to avoid loops if possible:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
// Get the values of age into a vector
ageVals = dt:Age &amp;lt;&amp;lt; getValues;
// Find the location of age values less than 14
ageValsLessThan14 = Loc(ageVals &amp;lt; 14);
// Set these values to zero
ageVals[ageValsLessThan14] = 0;
// Put the new values back into the column
dt:Age &amp;lt;&amp;lt; setValues(ageVals);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 21 Jul 2017 20:40:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/15791#M14431</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2017-07-21T20:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Scripting- How to change the value of a "cell"</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/15792#M14432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I will take this one more step.&amp;nbsp; Many time I have done similar things that Ian showed.&amp;nbsp; Taking the data out of the data table and using matrix operators.&amp;nbsp; This has an advantage of performance on large amounts of data.&amp;nbsp; However the following is a technique that I have used many, many times, because it is very fast, and it doesn't require extracting from the data table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Names Default To Here( 1 );&lt;/P&gt;&lt;P&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );&lt;/P&gt;&lt;P&gt;Try( dt:Age[dt &amp;lt;&amp;lt; get rows where( :Age &amp;lt; 14 )] = 0 );&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The "Try" function simply protects against the case where the Get Rows Where could return an empty matrix, and the assignment would throw an error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Dec 2015 19:39:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/15792#M14432</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2015-12-05T19:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Scripting- How to change the value of a "cell"</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/15793#M14433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all.&lt;/P&gt;&lt;P&gt;The what I am trying to do is change the value of a cell&amp;nbsp; of a column that contains a formula.&lt;/P&gt;&lt;P&gt;The Big Class column "Age" is not from a formula so all these suggestions work to change the value of a cell.&lt;/P&gt;&lt;P&gt;I have a column, call it "Test," that uses the match formula. Is there a way to script it to change the value of a cell in that column to zero if the match formula calculates it as negative? I want to be able to force the value to zero if it is negative. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Dec 2015 21:12:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/15793#M14433</guid>
      <dc:creator>rebecca-maceach</dc:creator>
      <dc:date>2015-12-07T21:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Scripting- How to change the value of a "cell"</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/15794#M14434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would it make sense to make the test part of the formula?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin: 0px; font-size: 17px; line-height: normal; font-family: Courier; color: #032ce4;"&gt;If&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt;Match&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;...&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;)&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;0&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px; font-size: 17px; line-height: normal; font-family: Courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;0&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #011993;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px; font-size: 17px; line-height: normal; font-family: Courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #032ce4;"&gt;Match&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color: #009193;"&gt;&lt;STRONG&gt;...&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin: 0px; font-size: 17px; line-height: normal; font-family: Courier;"&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Dec 2015 21:27:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/15794#M14434</guid>
      <dc:creator>ms</dc:creator>
      <dc:date>2015-12-07T21:27:33Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Scripting- How to change the value of a "cell"</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/15795#M14435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can certainly make the conditional checking part of the formula&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2015 01:52:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/15795#M14435</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2015-12-08T01:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Scripting- How to change the value of a "cell"</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/15796#M14436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post the formula?&amp;nbsp; As &lt;A href="https://community.jmp.com/people/txnelson"&gt;txnelson&lt;/A&gt;​ said you can simply make the checking part of the formula.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To post the formula:&lt;/P&gt;&lt;P&gt;1. Open your dataset and click on the + sign next to the formula column.&amp;nbsp; &lt;/P&gt;&lt;P&gt;2. Double-click inside the formula window.&amp;nbsp; This will change the window to show the JSL code for the formula&lt;/P&gt;&lt;P&gt;3. Copy the JSL code and post it to this forum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The new formula will be something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: black;"&gt;tmp &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: navy;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: black;"&gt; put&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: navy;"&gt;-&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: black;"&gt;original&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: navy;"&gt;-&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: black;"&gt;formula&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: navy;"&gt;-&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: black;"&gt;here&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: #0000dd;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: black;"&gt; &lt;STRONG&gt;(&lt;/STRONG&gt;tmp &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: navy;"&gt;&amp;lt;&lt;/SPAN&gt; &lt;STRONG style="color: teal; font-size: 10.0pt; font-family: Consolas;"&gt;0&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: navy;"&gt;,&lt;/SPAN&gt; &lt;STRONG style="color: teal; font-size: 10.0pt; font-family: Consolas;"&gt;0&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: navy;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: black;"&gt; tmp&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: Consolas; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2015 13:51:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/15796#M14436</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2015-12-08T13:51:17Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Scripting- How to change the value of a "cell"</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/15797#M14437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I like the matrix way but how to do if I want to clean out several column for which cleaning condition are difference.&lt;/P&gt;&lt;P&gt;for example in big class&lt;/P&gt;&lt;P&gt;age --&amp;gt; set up all cell with value &amp;lt; 13 as empty&lt;/P&gt;&lt;P&gt;height --&amp;gt; set up all cell with value &amp;gt; 100 as empty&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;supposing that I have some where a reference table for all column condition.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Sep 2016 03:24:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/15797#M14437</guid>
      <dc:creator>KinKame</dc:creator>
      <dc:date>2016-09-02T03:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Scripting- How to change the value of a "cell"</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/42286#M24629</link>
      <description>&lt;P&gt;Hi Jim,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What would be the form of this script if you had the "else" and third alternative as defined in the IF command?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;K&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jul 2017 21:52:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/42286#M24629</guid>
      <dc:creator>Kerouwhack</dc:creator>
      <dc:date>2017-07-20T21:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Scripting- How to change the value of a "cell"</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/42289#M24632</link>
      <description>&lt;P&gt;You have to change the formula to check for the value that you want to change, and then use a conditional statement in the formula to change it to the value you want.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;// Sample formula
:A + :B;
If( isMissing(:A+:B) == 1, 0 );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 20 Jul 2017 23:19:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/42289#M24632</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-07-20T23:19:37Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Scripting- How to change the value of a "cell"</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/42311#M24636</link>
      <description>&lt;P&gt;For this scenario, you could use the 'Range Check' column property. That way the table carries the meta data, and you don't need another table:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;NamesDefaultToHere(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");

Wait(2);
Column(dt, "age") &amp;lt;&amp;lt; rangeCheck( !LT( 13 ) );
Column(dt, "weight") &amp;lt;&amp;lt; rangeCheck( LT( 100 ) );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 21 Jul 2017 09:40:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/42311#M24636</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2017-07-21T09:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Scripting- How to change the value of a "cell"</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/64657#M34232</link>
      <description>&lt;P&gt;one liner....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;dt[dt&amp;lt;&amp;lt; get rows where(:ageval &amp;lt; 14)] = 0;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Jul 2018 06:06:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Scripting-How-to-change-the-value-of-a-quot-cell-quot/m-p/64657#M34232</guid>
      <dc:creator>johnpjust</dc:creator>
      <dc:date>2018-07-28T06:06:21Z</dc:date>
    </item>
  </channel>
</rss>

