<?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: can we color the cells in jmp table as we do in excel? I mean really give colors to the part of in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/41316#M24114</link>
    <description>&lt;P&gt;For a JMP table the selection color is controlled by the Windows selection color. &amp;nbsp;Here's how to do it under windows 7:&amp;nbsp;&lt;A href="https://answers.microsoft.com/en-us/windows/forum/windows_7-desktop/how-to-change-windows-7-highlight-color-select/99d962c8-7413-4e20-b209-8951f9eab95f" target="_blank"&gt;https://answers.microsoft.com/en-us/windows/forum/windows_7-desktop/how-to-change-windows-7-highlight-color-select/99d962c8-7413-4e20-b209-8951f9eab95f&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 28 Jun 2017 13:23:19 GMT</pubDate>
    <dc:creator>pmroz</dc:creator>
    <dc:date>2017-06-28T13:23:19Z</dc:date>
    <item>
      <title>can we color the cells in jmp table as we do in excel? I mean really give colors to the part of table/cells interested</title>
      <link>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/8496#M8490</link>
      <description>&lt;P&gt;can we color the cells in jmp table as we do in excel? I mean really give colors to the part of table/cells interested?&lt;/P&gt;
&lt;P&gt;I tried below jsl but it only works when you plot the data in graphs but not in the table itself?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance!&lt;/P&gt;
&lt;P&gt;Evan&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="text-align: left;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt=Data Table( "Bin Wafer Map" );
For(i=4, i&amp;lt;=N col(dt),i++,
dt:i &amp;lt;&amp;lt; Set Property(
"Value Colors",
{1=Green,3 = Red, 4 = Yellow,5=orange, 6 = Magenta, 7 =Blue,8 = Cyan,9=BlueCyan}
));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P style="text-align: left;"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 23:23:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/8496#M8490</guid>
      <dc:creator>robust1972</dc:creator>
      <dc:date>2023-06-09T23:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: can we color the cells in jmp table as we do in excel? I mean really give colors to the part of table/cells interested</title>
      <link>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/8497#M8491</link>
      <description>&lt;P&gt;In JMP 9 and beyond try right clicking on a cell in a data table and you'll get a menu that will let you color the cell.&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="6176_JMPScreenSnapz001.png" style="width: 348px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/357i0DD04ECB54AE1852/image-size/medium?v=v2&amp;amp;px=400" role="button" title="6176_JMPScreenSnapz001.png" alt="6176_JMPScreenSnapz001.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In JSL you can use the Color Cell() message:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

column(dt, “Age”)  &amp;lt;&amp;lt;  Color Cells( {5, {15}} );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or the Color Cell by Value() message:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

:Age &amp;lt;&amp;lt;

Set Property(

  "Value Colors",

  {12 = -13977430, 13 = -3780930, 14 = -

  4157407, 15 = -13596965, 16 = -2210961, 17

   = -10562523}

);

Wait( 1 );

:Age &amp;lt;&amp;lt; Color Cell by Value( 1 );
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 11 Jan 2021 21:03:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/8497#M8491</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2021-01-11T21:03:13Z</dc:date>
    </item>
    <item>
      <title>Re: can we color the cells in jmp table as we do in excel? I mean really give colors to the part of table/cells interested</title>
      <link>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/8498#M8492</link>
      <description>&lt;P&gt;You can apply a value gradient using JSL in the following manner.&amp;nbsp; Note that to use dynamically calculated values of min, max and average I had to build a string and execute it with eval(parse()).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dtcol = column(dt, "weight");

one_min = col min(dtcol);
one_max = col max(dtcol);
one_avg = col mean(dtcol);

gradient_expr = evalinsert("\[
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dtcol &amp;lt;&amp;lt; Set Property( "Color Gradient",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {"Jet", Range(^one_min^, ^one_max^, ^one_avg^)});
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dtcol &amp;lt;&amp;lt; color cell by value(1);
]\");

eval(parse(gradient_expr));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 21:04:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/8498#M8492</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2021-01-11T21:04:23Z</dc:date>
    </item>
    <item>
      <title>Re: can we color the cells in jmp table as we do in excel? I mean really give colors to the part of table/cells interested</title>
      <link>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/8499#M8493</link>
      <description>&lt;P&gt;thanks Jeff and PMroz.&lt;/P&gt;
&lt;P&gt;I got the hint and was able to get my wafer map colored by Bin(value). I did not know the color by cell value is off by default. Have not figure out how to tell jmp do nothing if the cell value is empty.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;=Data Table( "Bin Wafer Map" );
For(i=4, i&amp;lt;=N col(dt),i++,
:i &amp;lt;&amp;lt; Set Property(
"Value Colors",
1=Green,3 = Red, 4 = Yellow,5=orange, 6 = Magenta, 7 =Blue
,8 = Cyan,9=BlueCyan,.=white}
&amp;lt;&amp;lt;color cell by value(1));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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="6187_Capture.PNG" style="width: 493px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/358iEE2F633BDFFD8119/image-size/medium?v=v2&amp;amp;px=400" role="button" title="6187_Capture.PNG" alt="6187_Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 21:05:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/8499#M8493</guid>
      <dc:creator>robust1972</dc:creator>
      <dc:date>2021-01-11T21:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: can we color the cells in jmp table as we do in excel? I mean really give colors to the part of table/cells interested</title>
      <link>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/8500#M8494</link>
      <description>&lt;P&gt;finally I got it to color only non-empty cells with desired colors. but there is still an error though the script is executable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;=Data Table( "Bin Wafer Map" );
(i=4, i&amp;lt;=N col(dt),i++,
(j=1, j&amp;lt;=N Row(dt),j++,
if(dt:i[j]==1,dt:i &amp;lt;&amp;lt; Color Cells(Green,{j}),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(dt:i[j]==3,dt:i &amp;lt;&amp;lt; Color Cells(Red,{j}),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(dt:i[j]==4,dt:i &amp;lt;&amp;lt; Color Cells(Yellow,{j}),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(dt:i[j]==5,dt:i &amp;lt;&amp;lt; Color Cells(Orange,{j}),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(dt:i[j]==6,dt:i &amp;lt;&amp;lt; Color Cells(Magenta,{j}),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(dt:i[j]==7,dt:i &amp;lt;&amp;lt; Color Cells(Blue,{j}),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(dt:i[j]==8,dt:i &amp;lt;&amp;lt; Color Cells(Cyan,{j}),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(dt:i[j]==9,dt:i &amp;lt;&amp;lt; Color Cells(BlueCyan,{j}),
))))));


(i=4, i&amp;lt;=N col(dt),i++,
(j=1, j&amp;lt;=N Row(dt),j++,
(!zero or missing(dt:i[j]),dt:i[j]&amp;lt;&amp;lt;color cell by value(1),
)));&lt;/CODE&gt;&lt;/PRE&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="6195_Capture.PNG" style="width: 485px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/360i18100E7D6621A9FF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="6195_Capture.PNG" alt="6195_Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 21:05:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/8500#M8494</guid>
      <dc:creator>robust1972</dc:creator>
      <dc:date>2021-01-11T21:05:30Z</dc:date>
    </item>
    <item>
      <title>Re: can we color the cells in jmp table as we do in excel? I mean really give colors to the part of table/cells interested</title>
      <link>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/8501#M8495</link>
      <description>&lt;P&gt;This code is a bit simpler.&amp;nbsp; Note that I'm using k for a looping variable instead of &lt;STRONG&gt;j&lt;/STRONG&gt;; &lt;STRONG&gt;j&lt;/STRONG&gt; is a function in JSL.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;color_list = {"Green", "Red", "Yellow", "Purple", "Orange", "Magenta", "Blue", "Cyan", "BlueCyan"};

dt = Data Table( "Bin Wafer Map" );
For( i = 4, i &amp;lt;= N Col( dt ), i++,
&amp;nbsp;&amp;nbsp;&amp;nbsp; For( k = 1, k &amp;lt;= N Row( dt ), k++,
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; one_value = dt:i[k];
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; if (! is missing(one_value),
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; dt:i &amp;lt;&amp;lt; color cells(color_list[one_value], {k});
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; dt:i &amp;lt;&amp;lt; color cell by value( 1 );
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; );
&amp;nbsp;&amp;nbsp;&amp;nbsp; );
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 21:05:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/8501#M8495</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2021-01-11T21:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: can we color the cells in jmp table as we do in excel? I mean really give colors to the part of table/cells interested</title>
      <link>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/8502#M8496</link>
      <description>&lt;P&gt;thanks, P!&lt;/P&gt;
&lt;P&gt;your script is much simpler but it is not able to exclude the empty cells(showing X)&lt;/P&gt;
&lt;P&gt;my script trying to send color cell by value to a cell, which works but giving below error. Do you know what the error tells us and how to debug it?&lt;/P&gt;
&lt;P&gt;PS:&amp;nbsp; I tried use below script to add a empty row btw each wafer but it might calls a infinite loop:(, never worked.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;For(a=0, a&amp;lt;(N Row(dt))/11,a++,
dt&amp;lt;&amp;lt;add rows(1,(a+(a+1)*11));
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks a gain.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="6200_Untitled.png" style="width: 1281px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/361i46F614364A431071/image-size/medium?v=v2&amp;amp;px=400" role="button" title="6200_Untitled.png" alt="6200_Untitled.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2021 21:06:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/8502#M8496</guid>
      <dc:creator>robust1972</dc:creator>
      <dc:date>2021-01-11T21:06:23Z</dc:date>
    </item>
    <item>
      <title>Re: can we color the cells in jmp table as we do in excel? I mean really give colors to the part of table/cells interested</title>
      <link>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/8503#M8497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My code excludes the empty cells with the ! is missing() check.&amp;nbsp; I only get the X's for empty cells when I use a Value Gradient.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your code is failing because that method expects a column, not a cell.&amp;nbsp; Again I strongly recommend that you change j to k or something because j is a function in JSL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I realized that the color cell by value method only needs to be called once per column, so I took it out of the k loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt;color_list &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt; &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;{&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: purple;"&gt;"Green"&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: purple;"&gt;"Red"&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: purple;"&gt;"Yellow"&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: purple;"&gt;"Purple"&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: purple;"&gt;"Orange"&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: purple;"&gt;"Magenta"&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: purple;"&gt;"Blue"&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: purple;"&gt;"Cyan"&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: purple;"&gt;"BlueCyan"&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;}&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt;dt &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: #0000dd;"&gt;Data Table&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: purple;"&gt;"Bin Wafer Map"&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt; &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: #0000dd;"&gt;For&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt; i &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: teal;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;4&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt; i &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;&amp;lt;=&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: #0000dd;"&gt;N Col&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt; dt &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt; i&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;++,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'Courier New'; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt;dt&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt;i &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt; color cell by value&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: teal;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt; &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: #0000dd;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;For&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt; k &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: teal;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt; k &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;&amp;lt;=&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: #0000dd;"&gt;N Row&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt; dt &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt; k&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;++,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;one_value &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt; dt&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt;i&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;[&lt;/STRONG&gt;k&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;]&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: #0000dd;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt; &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;!&lt;/SPAN&gt; &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: #0000dd;"&gt;is missing&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt;one_value&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;dt&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt;i &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt; color cells&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;(&lt;/STRONG&gt;color_list&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;[&lt;/STRONG&gt;one_value&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;]&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt; &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;{&lt;/STRONG&gt;k&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;})&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em; font-weight: inherit; font-style: inherit; font-family: 'Courier New'; color: black;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em; font-weight: inherit; font-style: inherit; font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: black;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2014 17:19:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/8503#M8497</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2014-05-01T17:19:36Z</dc:date>
    </item>
    <item>
      <title>Re: can we color the cells in jmp table as we do in excel? I mean really give colors to the part of</title>
      <link>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/39303#M22983</link>
      <description>&lt;P&gt;Hi! Found this topic is very helpful on my color cell function. However i have some concern. By using same table I only want to color cell values from columns 1 ~8 which contains &amp;gt; 0. Below code works on column 1 but I want to loop it through other columns 2~7. Can you help me on this? Thanks!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Data Table( "Bin Wafer Map" ); 
For( i = 1, i &amp;lt;= N Row( dt ), i++, 
If( Column( dt, "1" )[i] &amp;gt; 0, Column( dt, "1" ) &amp;lt;&amp;lt; Color Cells( 4, {i} ), 
)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 17 May 2017 06:00:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/39303#M22983</guid>
      <dc:creator>Von_Andre</dc:creator>
      <dc:date>2017-05-17T06:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: can we color the cells in jmp table as we do in excel? I mean really give colors to the part of</title>
      <link>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/39312#M22991</link>
      <description>&lt;P&gt;I guess you need another loop to take care of the columns. Something like:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Data Table( "Bin Wafer Map" );
// Loop over columns . . .
For(c = 1, c&amp;lt;=8, c++,
	// Loop over rows . . .
	For( i = 1, i &amp;lt;= N Row( dt ), i++,
		If( Column( dt, c )[i] &amp;gt; 0,
			Column( dt, c ) &amp;lt;&amp;lt; Color Cells( 4, {i} ),

		)
	);
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 17 May 2017 09:47:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/39312#M22991</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2017-05-17T09:47:24Z</dc:date>
    </item>
    <item>
      <title>Re: can we color the cells in jmp table as we do in excel? I mean really give colors to the part of</title>
      <link>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/39343#M23005</link>
      <description>Thanks a lot Ian! Nice work!</description>
      <pubDate>Thu, 18 May 2017 04:59:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/39343#M23005</guid>
      <dc:creator>Von_Andre</dc:creator>
      <dc:date>2017-05-18T04:59:39Z</dc:date>
    </item>
    <item>
      <title>Re: can we color the cells in jmp table as we do in excel? I mean really give colors to the part of</title>
      <link>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/41273#M24083</link>
      <description>&lt;P&gt;Hi is there a way to color selected cells? I have a hew hundred cells that are selected and I would like to give a color to stand out.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sam&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2017 18:33:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/41273#M24083</guid>
      <dc:creator>SamH</dc:creator>
      <dc:date>2017-06-27T18:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: can we color the cells in jmp table as we do in excel? I mean really give colors to the part of</title>
      <link>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/41316#M24114</link>
      <description>&lt;P&gt;For a JMP table the selection color is controlled by the Windows selection color. &amp;nbsp;Here's how to do it under windows 7:&amp;nbsp;&lt;A href="https://answers.microsoft.com/en-us/windows/forum/windows_7-desktop/how-to-change-windows-7-highlight-color-select/99d962c8-7413-4e20-b209-8951f9eab95f" target="_blank"&gt;https://answers.microsoft.com/en-us/windows/forum/windows_7-desktop/how-to-change-windows-7-highlight-color-select/99d962c8-7413-4e20-b209-8951f9eab95f&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2017 13:23:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/can-we-color-the-cells-in-jmp-table-as-we-do-in-excel-I-mean/m-p/41316#M24114</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2017-06-28T13:23:19Z</dc:date>
    </item>
  </channel>
</rss>

