<?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 How to use JSL to color local cells by value? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/276890#M53786</link>
    <description>&lt;P&gt;For example, in the "weight" column of "Big class.jMP ", take the data in rows 1-10 and make the gradient color by data height, as in the &lt;SPAN&gt;Image&lt;/SPAN&gt;.So can start and stop any color&amp;nbsp; want.&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="2020-07-05_21-55.png" style="width: 769px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/25086i0E81A15C9A6B11E8/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-07-05_21-55.png" alt="2020-07-05_21-55.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 09 Jun 2023 23:31:11 GMT</pubDate>
    <dc:creator>lwx228</dc:creator>
    <dc:date>2023-06-09T23:31:11Z</dc:date>
    <item>
      <title>How to use JSL to color local cells by value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/276890#M53786</link>
      <description>&lt;P&gt;For example, in the "weight" column of "Big class.jMP ", take the data in rows 1-10 and make the gradient color by data height, as in the &lt;SPAN&gt;Image&lt;/SPAN&gt;.So can start and stop any color&amp;nbsp; want.&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="2020-07-05_21-55.png" style="width: 769px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/25086i0E81A15C9A6B11E8/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-07-05_21-55.png" alt="2020-07-05_21-55.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 23:31:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/276890#M53786</guid>
      <dc:creator>lwx228</dc:creator>
      <dc:date>2023-06-09T23:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to use JSL to color local cells by value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/276892#M53787</link>
      <description>&lt;P class="src"&gt;"Color scales" were not found on the script index.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P class="src"&gt;Thanks!&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Sun, 05 Jul 2020 14:15:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/276892#M53787</guid>
      <dc:creator>lwx228</dc:creator>
      <dc:date>2020-07-05T14:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to use JSL to color local cells by value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/276897#M53789</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="colors.PNG" style="width: 714px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/25089i2F0C89C54E8AFB4F/image-size/large?v=v2&amp;amp;px=999" role="button" title="colors.PNG" alt="colors.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Here is a script that will color the column weight's first 10 rows in the data table.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt=Open("$SAMPLE_DATA/big class.jmp");

// Set the gradient list of colors
colorList = {-2768895, -5530606, -6582759, -8094941, -9147350, -10462158, -11514567, -12237762,
-13344414, -14575206};

// Color first 10 rows

// find the range
weightMin= col min(if(Row()&amp;lt;=10,:weight,.));
weightMax= col max(if(Row()&amp;lt;=10,:weight,.));
weightInc= (weightMax-weightmin)/10;

// Loop across and set the colors
For(i=1,i&amp;lt;=10,i++,
	Bin=floor((:weight[i]-weightMin)/weightInc)+1;
	if(Bin&amp;gt;10,Bin=10);
	:weight &amp;lt;&amp;lt; color cells( colorList[bin],i)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;To understand all of the concepts behind the colors in JMP, you need to read the documentation in the Scripting Guide on Specifying Colors&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jul 2020 19:05:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/276897#M53789</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-07-05T19:05:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to use JSL to color local cells by value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/276912#M53795</link>
      <description>&lt;P&gt;Thank Jim!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I searched the index and saw only this.&lt;BR /&gt;Where I can see a more complete color code?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-07-06_15-28.png" style="width: 844px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/25096iE5D28E10F304BCA8/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-07-06_15-28.png" alt="2020-07-06_15-28.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jul 2020 08:21:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/276912#M53795</guid>
      <dc:creator>lwx228</dc:creator>
      <dc:date>2020-07-06T08:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to use JSL to color local cells by value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/276916#M53799</link>
      <description>Look in the Scripting Guide.......not just the Scripting Index</description>
      <pubDate>Mon, 06 Jul 2020 10:07:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/276916#M53799</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-07-06T10:07:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to use JSL to color local cells by value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277006#M53820</link>
      <description>&lt;P&gt;You can also try color gradient.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = open("$sample_data\Big Class.jmp");

bmin = col min(dt:height);
bmax = col max(dt:height);
bavg = col mean(dt:height);

dt:height &amp;lt;&amp;lt; set property("Color Gradient", {"Light Spectral", Range( {bmin, bmax, bavg} )});
dt:height &amp;lt;&amp;lt; Color Cell by Value(1);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This will color the entire column.&amp;nbsp; You can use color cells for rows 11 to the end to remove the color.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jul 2020 18:56:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277006#M53820</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2020-07-06T18:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to use JSL to color local cells by value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277070#M53852</link>
      <description>Thank pmroz!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Is your code complete?I didn't see any results when I ran it, and I didn't know how to perfect the code.Thanks for your help!</description>
      <pubDate>Tue, 07 Jul 2020 14:40:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277070#M53852</guid>
      <dc:creator>lwx228</dc:creator>
      <dc:date>2020-07-07T14:40:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to use JSL to color local cells by value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277074#M53854</link>
      <description>&lt;P&gt;You should see this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Big Class Gradient.png" style="width: 836px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/25169i65C19CA7945F0E65/image-size/large?v=v2&amp;amp;px=999" role="button" title="Big Class Gradient.png" alt="Big Class Gradient.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2020 14:52:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277074#M53854</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2020-07-07T14:52:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to use JSL to color local cells by value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277076#M53855</link>
      <description>&lt;P&gt;Here's how to only show the color gradient for rows 1-10.&amp;nbsp; Note that the min, max and mean are calculated on the entire column.&amp;nbsp; You can adjust that.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = open("$sample_data\Big Class.jmp");

bmin = col min(dt:height);
bmax = col max(dt:height);
bavg = col mean(dt:height);

dt:height &amp;lt;&amp;lt; set property("Color Gradient", {"Light Spectral", Range( {bmin, bmax, bavg} )});
dt:height &amp;lt;&amp;lt; Color Cell by Value(1);

reset_rows = 11::40;
dt:height &amp;lt;&amp;lt; color cells ("White", reset_rows);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Big Class Gradient2.png" style="width: 836px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/25170i7501F2A8EF556D38/image-size/large?v=v2&amp;amp;px=999" role="button" title="Big Class Gradient2.png" alt="Big Class Gradient2.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2020 14:56:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277076#M53855</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2020-07-07T14:56:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to use JSL to color local cells by value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277215#M53867</link>
      <description>&lt;P&gt;&lt;A href="https://community.jmp.com/t5/user/viewprofilepage/user-id/4550" target="_blank" rel="noopener"&gt;&lt;FONT&gt;Thank pmroz!&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="transSent"&gt;Strange, I still don't see 1-10 lines of color here.&lt;/SPAN&gt;&lt;SPAN class="transSent"&gt;Lines 11 to 40 are white.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="transSent"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-07-08_06-46.png" style="width: 770px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/25188iD6B633DB865C2E90/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-07-08_06-46.png" alt="2020-07-08_06-46.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2020 22:50:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277215#M53867</guid>
      <dc:creator>lwx228</dc:creator>
      <dc:date>2020-07-07T22:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to use JSL to color local cells by value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277219#M53868</link>
      <description>&lt;UL&gt;&lt;LI&gt;&lt;P class="src"&gt;The same is true with other versions.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-07-08_06-52.png" style="width: 686px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/25189i71E3FECE3387BFA1/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-07-08_06-52.png" alt="2020-07-08_06-52.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Tue, 07 Jul 2020 22:53:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277219#M53868</guid>
      <dc:creator>lwx228</dc:creator>
      <dc:date>2020-07-07T22:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to use JSL to color local cells by value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277395#M53901</link>
      <description>&lt;P&gt;What OS and JMP version(s) are you using?&amp;nbsp; I'm using JMP 14 on Windows 10, 64-bit.&lt;/P&gt;
&lt;P&gt;Try these steps:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Open Big Class&lt;/LI&gt;
&lt;LI&gt;Right click on height &amp;gt; Column Properties &amp;gt; Color Gradient&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Big Class Gradient3.png" style="width: 621px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/25207i42F36A2A95E147F9/image-size/large?v=v2&amp;amp;px=999" role="button" title="Big Class Gradient3.png" alt="Big Class Gradient3.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Check "Color Cell by Value", then OK&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Big Class Gradient4.png" style="width: 502px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/25208i1F29147DF6CD0408/image-size/large?v=v2&amp;amp;px=999" role="button" title="Big Class Gradient4.png" alt="Big Class Gradient4.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;You should end up with this:&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Big Class Gradient5.png" style="width: 836px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/25209i8BCEF4E53A9D1359/image-size/large?v=v2&amp;amp;px=999" role="button" title="Big Class Gradient5.png" alt="Big Class Gradient5.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;If this still doesn't work you'll need to contact the JMP helpdesk.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jul 2020 14:55:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277395#M53901</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2020-07-08T14:55:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to use JSL to color local cells by value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277545#M53926</link>
      <description>Thank pmroz!&lt;BR /&gt;&lt;BR /&gt;I did it.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 08 Jul 2020 23:05:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277545#M53926</guid>
      <dc:creator>lwx228</dc:creator>
      <dc:date>2020-07-08T23:05:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to use JSL to color local cells by value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277551#M53928</link>
      <description>&lt;P class="_tgt transPara"&gt;&lt;SPAN class="transSent"&gt;But&amp;nbsp; to do it manually in order to show this?&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="_tgt transPara"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="_tgt transPara"&gt;&lt;SPAN class="transSent"&gt;In addition, could&amp;nbsp; use JSL to automatically get the color number of each row cell in the column of "height"?&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="_tgt transPara"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="_tgt transPara"&gt;&lt;SPAN class="transSent"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-07-09_07-48.png" style="width: 770px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/25216iE132DEDD68BF8618/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-07-09_07-48.png" alt="2020-07-09_07-48.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jul 2020 23:58:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277551#M53928</guid>
      <dc:creator>lwx228</dc:creator>
      <dc:date>2020-07-08T23:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to use JSL to color local cells by value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277552#M53929</link>
      <description>&lt;P&gt;A few years ago I asked the same question,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.jmp.com/t5/Discussions/How-do-you-get-the-color-of-a-specific-cell-in-a-data-table/m-p/10252" target="_self"&gt;Here it is:&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You basically have to extract it from the extracted script for the column you are interested in&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2020 00:04:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277552#M53929</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-07-09T00:04:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to use JSL to color local cells by value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277553#M53930</link>
      <description>Thank Jim!&lt;BR /&gt;You have given me a lot of help and have made rapid progress.&lt;BR /&gt;&lt;BR /&gt;I used to use VBA, and I was able to record most of the code for each step.&lt;BR /&gt;Now using JSL, also want to achieve fully automatic operation.</description>
      <pubDate>Thu, 09 Jul 2020 00:24:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277553#M53930</guid>
      <dc:creator>lwx228</dc:creator>
      <dc:date>2020-07-09T00:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to use JSL to color local cells by value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277556#M53931</link>
      <description>&lt;UL&gt;&lt;LI&gt;&lt;P class="src"&gt;Recording each step of operation, VBA is relatively easy.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-07-09_08-43.png" style="width: 711px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/25217i4D7115CCCAD42846/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-07-09_08-43.png" alt="2020-07-09_08-43.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Thu, 09 Jul 2020 00:47:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277556#M53931</guid>
      <dc:creator>lwx228</dc:creator>
      <dc:date>2020-07-09T00:47:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to use JSL to color local cells by value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277631#M53941</link>
      <description>&lt;P&gt;You can easily create a similar pattern in JSL.&amp;nbsp; But in JSL you create Functions.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="function.PNG" style="width: 669px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/25222i9C368CD43B3D6D52/image-size/large?v=v2&amp;amp;px=999" role="button" title="function.PNG" alt="function.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jul 2020 13:22:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277631#M53941</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-07-09T13:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to use JSL to color local cells by value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277788#M53957</link>
      <description>&lt;P&gt;Thank Jim!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I still haven't learned to write "Functions".&lt;BR /&gt;I want to get a color number like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-07-10_08-58.png" style="width: 695px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/25231i3B22C73B12D74816/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-07-10_08-58.png" alt="2020-07-10_08-58.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jul 2020 01:01:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277788#M53957</guid>
      <dc:creator>lwx228</dc:creator>
      <dc:date>2020-07-10T01:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to use JSL to color local cells by value?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277801#M53959</link>
      <description>&lt;P&gt;Did you read the entry that I posted in my previous reply about how to retrieve Cell Colors?&amp;nbsp; It has a function that can provide you with how to access the cell colors.&amp;nbsp; If the colors have been set by the use of "Color or Mark by Column" then the only way I know to get the colors, is to create a rowstate column, copy the current rowstates to the new column, and then use the Color Of( Row State( row#)) to retrieve the color value.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jul 2020 02:55:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-use-JSL-to-color-local-cells-by-value/m-p/277801#M53959</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-07-10T02:55:03Z</dc:date>
    </item>
  </channel>
</rss>

