<?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: Hide and exclude marked rows in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Hide-and-exclude-marked-rows/m-p/242936#M47944</link>
    <description>&lt;P&gt;The only way that I know of to get that information, is to write a script that interrogates the script for the column of interest.&amp;nbsp; If you use &amp;lt;&amp;lt; get script to retrieve the script for a given column, it will provide you something you can scan through to get the color information&lt;/P&gt;
&lt;P&gt;Using the Big Class sample JMP table in which I colored a few of the cells for the Height column and requesting&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt &amp;lt;&amp;lt; get script;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The following is returned&lt;/P&gt;
&lt;PRE&gt;New Column(
	["en" =&amp;gt; "height", "ja" =&amp;gt; "身長(インチ)", "x-id" =&amp;gt; "S_height_Col", "zh-CN" =&amp;gt; "身高"],
	Numeric,
	"Continuous",
	Format( "Fixed Dec", 5, 0 ),
	Set Property(
		"Notes",
		["en" =&amp;gt; "Explore data adventurously",
		"ja" =&amp;gt; "データを探索する。二変量の関係のXに指定する。",
		"x-id" =&amp;gt; "S_Explore_data_adventurously_3_Not",
		"zh-CN" =&amp;gt; "大胆地探究数据"]
	),
	Color Cells( {{3, {6}}, {42, {10}}, {27, {16}}} ),
	Set Selected,
	Set Values(
		[59, 61, 55, 66, 52, 60, 61, 51, 60, 61, 56, 65, 63, 58, 59, 61, 62, 65, 63,
		62, 63, 64, 65, 64, 68, 64, 69, 62, 64, 67, 65, 66, 62, 66, 65, 60, 68, 62,
		68, 70]
	),
	Set Display Width( 50 )
)&lt;/PRE&gt;
&lt;P&gt;The element Color Cells contains the information needed&lt;/P&gt;
&lt;PRE&gt;&lt;FONT style="background-color: #ffffff;"&gt;Color Cells( {{3, {6}}, {42, {10}}, {19, {11, 13}}, {27, {16}}} ),&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;the cell at row 6 is colored with the color number 3, row 10 with color number 42 etc.&amp;nbsp; Rows 11 and 13 both are colored with color 19.&lt;/P&gt;
&lt;P&gt;JSL contains the functions that will allow you to search through the script to get the color informa&lt;/P&gt;</description>
    <pubDate>Sat, 25 Jan 2020 01:28:08 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2020-01-25T01:28:08Z</dc:date>
    <item>
      <title>Hide and exclude marked rows</title>
      <link>https://community.jmp.com/t5/Discussions/Hide-and-exclude-marked-rows/m-p/242918#M47941</link>
      <description>&lt;P&gt;I want to hide and exclude specific rows that I have marked with a certain symbol or color. These rows are scattered throughout my data set and I don't want to manually hide and exclude all of them. I also want to be able to reverse the hide and exclude function for the specific cells in order to compare my original and edited data.&amp;nbsp;Does anyone have tips on what I should do?&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 22:32:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hide-and-exclude-marked-rows/m-p/242918#M47941</guid>
      <dc:creator>ascaniop</dc:creator>
      <dc:date>2020-01-24T22:32:59Z</dc:date>
    </item>
    <item>
      <title>Re: Hide and exclude marked rows</title>
      <link>https://community.jmp.com/t5/Discussions/Hide-and-exclude-marked-rows/m-p/242933#M47943</link>
      <description>One possible solution is to create a new numerical - Nominal column with the formula: "Color of ()" and then using it to select the rows that match your annotations. It's certainly not perfect but it should do the trick rapidly.&lt;BR /&gt;</description>
      <pubDate>Sat, 25 Jan 2020 01:01:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hide-and-exclude-marked-rows/m-p/242933#M47943</guid>
      <dc:creator>Thierry_S</dc:creator>
      <dc:date>2020-01-25T01:01:59Z</dc:date>
    </item>
    <item>
      <title>Re: Hide and exclude marked rows</title>
      <link>https://community.jmp.com/t5/Discussions/Hide-and-exclude-marked-rows/m-p/242936#M47944</link>
      <description>&lt;P&gt;The only way that I know of to get that information, is to write a script that interrogates the script for the column of interest.&amp;nbsp; If you use &amp;lt;&amp;lt; get script to retrieve the script for a given column, it will provide you something you can scan through to get the color information&lt;/P&gt;
&lt;P&gt;Using the Big Class sample JMP table in which I colored a few of the cells for the Height column and requesting&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt &amp;lt;&amp;lt; get script;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The following is returned&lt;/P&gt;
&lt;PRE&gt;New Column(
	["en" =&amp;gt; "height", "ja" =&amp;gt; "身長(インチ)", "x-id" =&amp;gt; "S_height_Col", "zh-CN" =&amp;gt; "身高"],
	Numeric,
	"Continuous",
	Format( "Fixed Dec", 5, 0 ),
	Set Property(
		"Notes",
		["en" =&amp;gt; "Explore data adventurously",
		"ja" =&amp;gt; "データを探索する。二変量の関係のXに指定する。",
		"x-id" =&amp;gt; "S_Explore_data_adventurously_3_Not",
		"zh-CN" =&amp;gt; "大胆地探究数据"]
	),
	Color Cells( {{3, {6}}, {42, {10}}, {27, {16}}} ),
	Set Selected,
	Set Values(
		[59, 61, 55, 66, 52, 60, 61, 51, 60, 61, 56, 65, 63, 58, 59, 61, 62, 65, 63,
		62, 63, 64, 65, 64, 68, 64, 69, 62, 64, 67, 65, 66, 62, 66, 65, 60, 68, 62,
		68, 70]
	),
	Set Display Width( 50 )
)&lt;/PRE&gt;
&lt;P&gt;The element Color Cells contains the information needed&lt;/P&gt;
&lt;PRE&gt;&lt;FONT style="background-color: #ffffff;"&gt;Color Cells( {{3, {6}}, {42, {10}}, {19, {11, 13}}, {27, {16}}} ),&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;the cell at row 6 is colored with the color number 3, row 10 with color number 42 etc.&amp;nbsp; Rows 11 and 13 both are colored with color 19.&lt;/P&gt;
&lt;P&gt;JSL contains the functions that will allow you to search through the script to get the color informa&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jan 2020 01:28:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hide-and-exclude-marked-rows/m-p/242936#M47944</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-01-25T01:28:08Z</dc:date>
    </item>
  </channel>
</rss>

