<?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: How can set different cells to different colors in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-can-set-different-cells-to-different-colors/m-p/662604#M85137</link>
    <description>&lt;P&gt;One to do this is to set the colors of cells in your table manually.&amp;nbsp; Then look at the table script.&amp;nbsp; Right click on the red triangle next to the table name and select Copy table script:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pmroz_0-1690385386003.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/55289iB3B20325B8367AD8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pmroz_0-1690385386003.png" alt="pmroz_0-1690385386003.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Here's the resulting code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;New Table( "Untitled 26", Add Rows( 3 ),
	New Column( "Column 1", Numeric, "Continuous",
		Format( "Best", 12 ),
		Color Cells( {{73, {1}}, {74, {2}}} ),
		Set Values( [1, 2, 3] )
	),
	New Column( "Column 2", Character, "Nominal",
		Color Cells( {{75, {2}}, {67, {3}}} ),
		Set Values( {"a", "b", "c"} )
	)
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 26 Jul 2023 15:31:10 GMT</pubDate>
    <dc:creator>pmroz</dc:creator>
    <dc:date>2023-07-26T15:31:10Z</dc:date>
    <item>
      <title>How can set different cells to different colors</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-set-different-cells-to-different-colors/m-p/662384#M85121</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt=Open("$SAMPLE_DATA/Big Class.jmp");&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;dt[1,1] is set to red&lt;BR /&gt;dt[1,2] is set to white&lt;BR /&gt;dt[1,1] is set to clear coloring&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jul 2023 07:30:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-set-different-cells-to-different-colors/m-p/662384#M85121</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2023-07-26T07:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: How can set different cells to different colors</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-set-different-cells-to-different-colors/m-p/662390#M85122</link>
      <description>&lt;P&gt;Use &lt;A href="https://www.jmp.com/support/help/en/16.2/#page/jmp/color-cells.shtml#ww725145" target="_blank" rel="noopener"&gt;Color Cells&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Scripting Index&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1690356848176.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/55276i94839E798945A966/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1690356848176.png" alt="jthi_0-1690356848176.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jul 2023 07:34:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-set-different-cells-to-different-colors/m-p/662390#M85122</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-07-26T07:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: How can set different cells to different colors</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-set-different-cells-to-different-colors/m-p/662604#M85137</link>
      <description>&lt;P&gt;One to do this is to set the colors of cells in your table manually.&amp;nbsp; Then look at the table script.&amp;nbsp; Right click on the red triangle next to the table name and select Copy table script:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pmroz_0-1690385386003.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/55289iB3B20325B8367AD8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pmroz_0-1690385386003.png" alt="pmroz_0-1690385386003.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Here's the resulting code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;New Table( "Untitled 26", Add Rows( 3 ),
	New Column( "Column 1", Numeric, "Continuous",
		Format( "Best", 12 ),
		Color Cells( {{73, {1}}, {74, {2}}} ),
		Set Values( [1, 2, 3] )
	),
	New Column( "Column 2", Character, "Nominal",
		Color Cells( {{75, {2}}, {67, {3}}} ),
		Set Values( {"a", "b", "c"} )
	)
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 26 Jul 2023 15:31:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-set-different-cells-to-different-colors/m-p/662604#M85137</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2023-07-26T15:31:10Z</dc:date>
    </item>
  </channel>
</rss>

