<?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: JSL equivalent for &amp;quot;select matching cells&amp;quot; in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/433748#M68348</link>
    <description>&lt;P&gt;I am not sure what exactly you are looking for, but maybe this will give you a possible feature you can use.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
dt &amp;lt;&amp;lt; select where( row() &amp;lt; 24 );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 05 Nov 2021 23:51:34 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2021-11-05T23:51:34Z</dc:date>
    <item>
      <title>JSL equivalent for "select matching cells"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/107541#M39168</link>
      <description>&lt;P&gt;Is there a JSL equivalent for "select matching cells" in a given column?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, I have many simulation runs represented in a single table.&amp;nbsp; Sometimes I see a rogue data point in Graph Builder, and I want to see all the other points from that run, which is all points with the same "run id".&amp;nbsp; Is there a way in JSL to select those points, then expand the selection to all rows with the same value in the "run id" column as the points I selected?&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jan 2019 20:28:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/107541#M39168</guid>
      <dc:creator>BHarris</dc:creator>
      <dc:date>2019-01-22T20:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: JSL equivalent for "select matching cells"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/107544#M39171</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;You will find JSL examples by searching the Scripting Index with "Select Where".&amp;nbsp; The examples in the Scripting Index should get you started.&amp;nbsp; You will need to be able to specify the criteria you are using to identify the rouge data points in graph builder.&amp;nbsp; Hope this is helpful.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jan 2019 22:05:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/107544#M39171</guid>
      <dc:creator>GM</dc:creator>
      <dc:date>2019-01-22T22:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: JSL equivalent for "select matching cells"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/107920#M39253</link>
      <description>&lt;P&gt;&lt;FONT size="2"&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;in JMP --&amp;gt; HELP--&amp;gt; SCRIPTING INDEX&amp;nbsp; you can find examples..&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;here the ones for 'select where'. hope can help you&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&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;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt &amp;lt;&amp;lt; Select Where( :Age &amp;lt; 14 );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 15:44:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/107920#M39253</guid>
      <dc:creator>gianpaolo</dc:creator>
      <dc:date>2019-01-28T15:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: JSL equivalent for "select matching cells"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/108105#M39335</link>
      <description>&lt;P&gt;I didn't realize when I wrote this that JMP supports setting keyboard shortcuts for menu items.&amp;nbsp; I set ctrl-shift-m to activate the "select matching cells", and it works perfectly for what I needed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I assume the responses below would be correct for the original question.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 15:37:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/108105#M39335</guid>
      <dc:creator>BHarris</dc:creator>
      <dc:date>2019-01-28T15:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: JSL equivalent for "select matching cells"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/108122#M39339</link>
      <description>&lt;P&gt;Nice one, that's a cool solution.&lt;/P&gt;&lt;P&gt;Sincerely,&lt;/P&gt;&lt;P&gt;MG&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 17:23:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/108122#M39339</guid>
      <dc:creator>GM</dc:creator>
      <dc:date>2019-01-28T17:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: JSL equivalent for "select matching cells"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/413332#M66302</link>
      <description>&lt;P&gt;I see you found the keyboard shortcut - did you ever find a jsl equivalent for ctrl-shift-m, selecting matching cells?&amp;nbsp; Thx&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Aug 2021 23:43:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/413332#M66302</guid>
      <dc:creator>Devin</dc:creator>
      <dc:date>2021-08-27T23:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: JSL equivalent for "select matching cells"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/413388#M66304</link>
      <description>&lt;P&gt;At least JMP16.1 Scripting index provides following:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
dt &amp;lt;&amp;lt; Select Rows([1, 2, 3, 4]);
dt &amp;lt;&amp;lt; Go To(:Height);
Wait(2);
dt &amp;lt;&amp;lt; Select Matching Cells();&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 28 Aug 2021 06:48:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/413388#M66304</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2021-08-28T06:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: JSL equivalent for "select matching cells"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/433728#M68346</link>
      <description>&lt;P&gt;Hi jthi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I m looking for solution to select first row from column 2 to 193 before the select matching cells.&lt;/P&gt;&lt;P&gt;Do you think you can help?&lt;/P&gt;</description>
      <pubDate>Fri, 05 Nov 2021 21:32:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/433728#M68346</guid>
      <dc:creator>dadawasozo</dc:creator>
      <dc:date>2021-11-05T21:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: JSL equivalent for "select matching cells"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/433748#M68348</link>
      <description>&lt;P&gt;I am not sure what exactly you are looking for, but maybe this will give you a possible feature you can use.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
dt &amp;lt;&amp;lt; select where( row() &amp;lt; 24 );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Nov 2021 23:51:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/433748#M68348</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-11-05T23:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: JSL equivalent for "select matching cells"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/433780#M68352</link>
      <description>&lt;P&gt;Hi Jim,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have 200 columns. what I want to do :&lt;BR /&gt;1) select first row across specific set of columns from column 2 to column 193.&lt;BR /&gt;2) then apply select matching cell ()&lt;/P&gt;
&lt;P&gt;3) last, delete all these matching cells that is across column 2-193.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;below will work if I able to make the Go to (Column(2::193)). any suggestion?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
dt &amp;lt;&amp;lt; Select Rows([1, 2, 3, 4]);
dt &amp;lt;&amp;lt; Go To(:Height);
Wait(2);
dt &amp;lt;&amp;lt; Select Matching Cells();&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 06 Nov 2021 14:07:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/433780#M68352</guid>
      <dc:creator>dadawasozo</dc:creator>
      <dc:date>2021-11-06T14:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: JSL equivalent for "select matching cells"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/433784#M68354</link>
      <description>&lt;P&gt;Here is a script that will do what I think you need&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );
selectionRows = [1, 2, 3, 4];

For( i = 4, i &amp;lt;= 5, i++,
	dt &amp;lt;&amp;lt; clear rowstates;
	dt &amp;lt;&amp;lt; Select Rows( selectionRows );
	dt &amp;lt;&amp;lt; Go To( i );
	dt &amp;lt;&amp;lt; Select Matching Cells();
	selectedRows = dt &amp;lt;&amp;lt; get selected rows;
	selectedRows = selectedRows[Index( 5, N Rows( selectedRows ) )];
	Column( dt, i )[selectedRows] = .;
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 06 Nov 2021 15:31:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/433784#M68354</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-11-06T15:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: JSL equivalent for "select matching cells"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/433792#M68355</link>
      <description>&lt;P&gt;Hi Jim ,&lt;/P&gt;&lt;P&gt;I got error below with the provided. I want to use picture to describe my problem here. please see the next pictures (table) as example. how can I do that with code?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dadawasozo_0-1636216027779.png" style="width: 330px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/37334i6F51BC4447F49CA7/image-dimensions/330x61?v=v2" width="330" height="61" role="button" title="dadawasozo_0-1636216027779.png" alt="dadawasozo_0-1636216027779.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;below is my example of the structure of the table. I want to remove empty cell with criteria of only if column2 to column8 are all empty cell. if any of the cell in this range of columns is not empty then do not remove. When I do it with mouse click, I will first (a) highlight first row but only on column2-column8. then I right click to select matching cell (b) and follow with delete (c).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dadawasozo_1-1636216126807.png" style="width: 335px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/37335i41311D1E0C6E4EB6/image-dimensions/335x113?v=v2" width="335" height="113" role="button" title="dadawasozo_1-1636216126807.png" alt="dadawasozo_1-1636216126807.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;(a)&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;&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;&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; (b)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dadawasozo_2-1636216427781.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/37336i9EEB146F5C6EB7B6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dadawasozo_2-1636216427781.png" alt="dadawasozo_2-1636216427781.png" /&gt;&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dadawasozo_3-1636216448077.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/37337iA2B6FC0FA70C432E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dadawasozo_3-1636216448077.png" alt="dadawasozo_3-1636216448077.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;(c)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dadawasozo_4-1636216536596.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/37338i5F760AE0CB70FCE2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dadawasozo_4-1636216536596.png" alt="dadawasozo_4-1636216536596.png" /&gt;&lt;/span&gt;&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Nov 2021 16:37:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/433792#M68355</guid>
      <dc:creator>dadawasozo</dc:creator>
      <dc:date>2021-11-06T16:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: JSL equivalent for "select matching cells"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/433794#M68357</link>
      <description>&lt;P&gt;Is this what you are looking for?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = New Table( "blood pressure",
	Add Rows( 20 ),
	New Column( "Subject", Set Values( [1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5] ) ),
	New Column( "S_Dose_Col",
		character,
		"Nominal",
		Set Values(
			{"A", "A", "A", "A", "A", "B", "B", "B", "B", "B", "Control", "Control", "Control", "Control",
			"Control", "Placebo", "Placebo", "Placebo", "Placebo", "Placebo"}
		)
	),
	New Column( "S_BP_8M_Col",
		Numeric,
		Set Values(
			[182.595915155309, 172.512940709438, 180.774421425438, 180.620679187184, ., 171.439595422176,
			174.589230394192, 179.109260746268, 177.787439187438, ., 181.804016028632, ., 186.313144806757,
			175.347853139956, 181.103289178403, 181.288352739913, 178.777832744608, 176.763152449944,
			175.768608854708, 184.167672392284]
		)
	),
	New Column( "S_BP_12M_Col",
		Numeric,
		"Continuous",
		Format( "Fixed Dec", 5, 0 ),
		Set Values(
			[173.550216520736, 180.718560564297, 188.500473854652, 176.718084823659, ., 181.462075626649,
			180.330100756984, 172.886222586229, 192.050244302843, ., 185.501158177984, 183.877324525276,
			179.931613365546, 180.493132509235, 174.944992509985, 177.663853371957, 174.717037207769,
			186.677919707096, 178.12326354079, 171.230704316198]
		)
	),
	New Column( "BP 6M",
		Numeric,
		Set Values(
			[180.116643270986, 180.917546679043, 177.384986937421, 182.381646560932, ., 179.517397097984, .,
			182.904992672503, 176.785646502378, ., 178.209310795898, 186.575178728884, ., 177.2578428812,
			180.642613381863, 178.850703910826, 188.986597488081, 172.45356859494, 182.404679249467,
			182.335148506991]
		)
	),
	New Column( "BP 8W",
		Numeric,
		Set Values(
			[173.797442210887, 170.201828509985, 188.441549950731, 176.337805749776, ., 183.021068043181,
			183.498290114926, 187.881911714776, 184.924564594592, ., 177.186342937671, ., 171.059060559811,
			184.517143208058, 179.143677395064, 178.211632365764, 190.546847185169, 179.666182707754,
			176.614597739946, 181.334797218108]
		)
	),
	New Column( "BP 12W",
		Numeric,
		Set Values(
			[178.416197148117, 178.839136233913, 175.346240386252, 172.773758285362, ., 175.683661608275,
			179.622232533597, 192.773275959188, 172.499108408691, ., 176.573252982367, 174.72327532089,
			172.873089144473, 171.169474537616, 185.445956950321, 181.685844613992, 178.055520662495,
			182.726891244295, 178.320419876662, 186.395858538357]
		)
	),
	New Column( "BP 6W",
		Numeric,
		Set Values(
			[181.152265967985, 176.084997418848, 181.924943930192, 183.608276048664, ., 174.15485890414,
			172.866924129507, 169.793497264777, 179.464417655732, ., 177.20643071091, 176.115218469266,
			181.319863949352, ., 183.622763290159, 178.639264502305, 176.991735583422, 177.924284755616,
			177.143465976767, 183.421182544757]
		)
	),
	New Column( "BP 8F",
		Numeric,
		Set Values(
			[171.278300921568, 175.161843431476, 183.12980493925, 183.04930217403, ., 184.878981656321,
			184.16481869131, 179.098192996471, 186.765084181627, ., 182.640175499696, 179.80577644674,
			179.038752187802, 175.727537977595, 183.636564430071, 188.483289884327, 182.282596238225,
			183.200306257339, 175.856743742269, 183.517577768589]
		)
	),
	New Column( "BP 12F",
		Numeric,
		Set Values(
			[177.570953487335, 184.884491085702, 182.794049100295, 187.31279033708, ., 182.387718653956,
			184.653326274105, 184.653672194875, 184.384583007231, ., 190.972901519754, 181.46178488602,
			181.459302956398, 184.604441269869, 173.249587056935, 183.125809166649, 187.951725739917,
			190.139279669601, 183.549834391574, 171.907000056173]
		)
	),
	New Column( "BP 6F",
		Numeric,
		Set Values(
			[170.514896659448, 187.603078247176, 180.121927541929, 182.931206367403, ., 184.169322994033,
			180.368840760416, 170.403578559484, 177.427685029706, ., 174.986928330607, 184.070139882305,
			189.242086812316, 169.540004898628, 185.21824057543, 173.182049720424, 170.940897197153,
			177.823031925273, 183.621024712236, 178.774574166082]
		)
	)
);

dt &amp;lt;&amp;lt; select where( Is Missing( Sum( dt[Row(), Index( 3, 11 )] ) ) );

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 06 Nov 2021 20:44:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/433794#M68357</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-11-06T20:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: JSL equivalent for "select matching cells"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/433802#M68361</link>
      <description>&lt;P&gt;Hi Jim,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is working. Just one more question for this topic.&lt;BR /&gt;what if one of the columns above are mixed data-type with some columns are character and some numeric? How we can select the columns?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sun, 07 Nov 2021 02:54:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/433802#M68361</guid>
      <dc:creator>dadawasozo</dc:creator>
      <dc:date>2021-11-07T02:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: JSL equivalent for "select matching cells"</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/433805#M68363</link>
      <description>&lt;P&gt;You will have to add a check for each character column into the Select Where statement.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = New Table( "blood pressure",
	Add Rows( 20 ),
	New Column( "Subject",
		Numeric,
		"Continuous",
		Format( "Best", 10 ),
		Set Values( [1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5] )
	),
	New Column( "S_Dose_Col",
		Character,
		"Nominal",
		Set Values(
			{"A", "A", "A", "A", "A", "B", "B", "B", "B", "B", "Control", "Control",
			"Control", "Control", "Control", "Placebo", "Placebo", "Placebo",
			"Placebo", "Placebo"}
		)
	),
	New Column( "S_BP_8M_Col",
		Numeric,
		"Continuous",
		Format( "Best", 16 ),
		Set Values(
			[182.595915155309, 172.512940709438, 180.774421425438, 180.620679187184,
			., 171.439595422176, 174.589230394192, 179.109260746268,
			177.787439187438, ., 181.804016028632, ., 186.313144806757,
			175.347853139956, 181.103289178403, 181.288352739913, 178.777832744608,
			176.763152449944, 175.768608854708, 184.167672392284]
		)
	),
	New Column( "S_BP_12M_Col",
		Numeric,
		"Continuous",
		Format( "Fixed Dec", 5, 0 ),
		Set Values(
			[173.550216520736, 180.718560564297, 188.500473854652, 176.718084823659,
			., 181.462075626649, 180.330100756984, 172.886222586229,
			192.050244302843, ., 185.501158177984, 183.877324525276,
			179.931613365546, 180.493132509235, 174.944992509985, 177.663853371957,
			174.717037207769, 186.677919707096, 178.12326354079, 171.230704316198]
		)
	),
	New Column( "BP 6M",
		Numeric,
		"Continuous",
		Format( "Best", 16 ),
		Set Values(
			[180.116643270986, 180.917546679043, 177.384986937421, 182.381646560932,
			., 179.517397097984, ., 182.904992672503, 176.785646502378, .,
			178.209310795898, 186.575178728884, ., 177.2578428812, 180.642613381863,
			178.850703910826, 188.986597488081, 172.45356859494, 182.404679249467,
			182.335148506991]
		)
	),
	New Column( "BP 8W",
		Character,
		"Nominal",
		Set Values(
			{"173.797442210887", "170.201828509985", "188.441549950731",
			"176.337805749776", "Q", "183.021068043181", "183.498290114926",
			"187.881911714776", "184.924564594592", "", "177.186342937671", "",
			"171.059060559811", "184.517143208058", "179.143677395064",
			"178.211632365764", "190.546847185169", "179.666182707754",
			"176.614597739946", "181.334797218108"}
		)
	),
	New Column( "BP 12W",
		Numeric,
		"Continuous",
		Format( "Best", 16 ),
		Set Values(
			[178.416197148117, 178.839136233913, 175.346240386252, 172.773758285362,
			., 175.683661608275, 179.622232533597, 192.773275959188,
			172.499108408691, ., 176.573252982367, 174.72327532089, 172.873089144473,
			171.169474537616, 185.445956950321, 181.685844613992, 178.055520662495,
			182.726891244295, 178.320419876662, 186.395858538357]
		)
	),
	New Column( "BP 6W",
		Numeric,
		"Continuous",
		Format( "Best", 16 ),
		Set Values(
			[181.152265967985, 176.084997418848, 181.924943930192, 183.608276048664,
			., 174.15485890414, 172.866924129507, 169.793497264777, 179.464417655732,
			., 177.20643071091, 176.115218469266, 181.319863949352, .,
			183.622763290159, 178.639264502305, 176.991735583422, 177.924284755616,
			177.143465976767, 183.421182544757]
		)
	),
	New Column( "BP 8F",
		Numeric,
		"Continuous",
		Format( "Best", 16 ),
		Set Values(
			[171.278300921568, 175.161843431476, 183.12980493925, 183.04930217403, .,
			184.878981656321, 184.16481869131, 179.098192996471, 186.765084181627, .,
			182.640175499696, 179.80577644674, 179.038752187802, 175.727537977595,
			183.636564430071, 188.483289884327, 182.282596238225, 183.200306257339,
			175.856743742269, 183.517577768589]
		)
	),
	New Column( "BP 12F",
		Numeric,
		"Continuous",
		Format( "Best", 16 ),
		Set Values(
			[177.570953487335, 184.884491085702, 182.794049100295, 187.31279033708,
			., 182.387718653956, 184.653326274105, 184.653672194875,
			184.384583007231, ., 190.972901519754, 181.46178488602, 181.459302956398,
			184.604441269869, 173.249587056935, 183.125809166649, 187.951725739917,
			190.139279669601, 183.549834391574, 171.907000056173]
		)
	),
	New Column( "BP 6F",
		Numeric,
		"Continuous",
		Format( "Best", 16 ),
		Set Values(
			[170.514896659448, 187.603078247176, 180.121927541929, 182.931206367403,
			., 184.169322994033, 180.368840760416, 170.403578559484,
			177.427685029706, ., 174.986928330607, 184.070139882305,
			189.242086812316, 169.540004898628, 185.21824057543, 173.182049720424,
			170.940897197153, 177.823031925273, 183.621024712236, 178.774574166082]
		)
	)
);

Names Default To Here( 1 );
dt = New Table( "blood pressure",
	Add Rows( 20 ),
	New Column( "Subject", Set Values( [1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5] ) ),
	New Column( "S_Dose_Col",
		character,
		"Nominal",
		Set Values(
			{"A", "A", "A", "A", "A", "B", "B", "B", "B", "B", "Control", "Control", "Control", "Control",
			"Control", "Placebo", "Placebo", "Placebo", "Placebo", "Placebo"}
		)
	),
	New Column( "S_BP_8M_Col",
		Numeric,
		Set Values(
			[182.595915155309, 172.512940709438, 180.774421425438, 180.620679187184, ., 171.439595422176,
			174.589230394192, 179.109260746268, 177.787439187438, ., 181.804016028632, ., 186.313144806757,
			175.347853139956, 181.103289178403, 181.288352739913, 178.777832744608, 176.763152449944,
			175.768608854708, 184.167672392284]
		)
	),
	New Column( "S_BP_12M_Col",
		Numeric,
		"Continuous",
		Format( "Fixed Dec", 5, 0 ),
		Set Values(
			[173.550216520736, 180.718560564297, 188.500473854652, 176.718084823659, ., 181.462075626649,
			180.330100756984, 172.886222586229, 192.050244302843, ., 185.501158177984, 183.877324525276,
			179.931613365546, 180.493132509235, 174.944992509985, 177.663853371957, 174.717037207769,
			186.677919707096, 178.12326354079, 171.230704316198]
		)
	),
	New Column( "BP 6M",
		Numeric,
		Set Values(
			[180.116643270986, 180.917546679043, 177.384986937421, 182.381646560932, ., 179.517397097984, .,
			182.904992672503, 176.785646502378, ., 178.209310795898, 186.575178728884, ., 177.2578428812,
			180.642613381863, 178.850703910826, 188.986597488081, 172.45356859494, 182.404679249467,
			182.335148506991]
		)
	),
	New Column( "BP 8W",
		Numeric,
		Set Values(
			[173.797442210887, 170.201828509985, 188.441549950731, 176.337805749776, ., 183.021068043181,
			183.498290114926, 187.881911714776, 184.924564594592, ., 177.186342937671, ., 171.059060559811,
			184.517143208058, 179.143677395064, 178.211632365764, 190.546847185169, 179.666182707754,
			176.614597739946, 181.334797218108]
		)
	),
	New Column( "BP 12W",
		Numeric,
		Set Values(
			[178.416197148117, 178.839136233913, 175.346240386252, 172.773758285362, ., 175.683661608275,
			179.622232533597, 192.773275959188, 172.499108408691, ., 176.573252982367, 174.72327532089,
			172.873089144473, 171.169474537616, 185.445956950321, 181.685844613992, 178.055520662495,
			182.726891244295, 178.320419876662, 186.395858538357]
		)
	),
	New Column( "BP 6W",
		Numeric,
		Set Values(
			[181.152265967985, 176.084997418848, 181.924943930192, 183.608276048664, ., 174.15485890414,
			172.866924129507, 169.793497264777, 179.464417655732, ., 177.20643071091, 176.115218469266,
			181.319863949352, ., 183.622763290159, 178.639264502305, 176.991735583422, 177.924284755616,
			177.143465976767, 183.421182544757]
		)
	),
	New Column( "BP 8F",
		Numeric,
		Set Values(
			[171.278300921568, 175.161843431476, 183.12980493925, 183.04930217403, ., 184.878981656321,
			184.16481869131, 179.098192996471, 186.765084181627, ., 182.640175499696, 179.80577644674,
			179.038752187802, 175.727537977595, 183.636564430071, 188.483289884327, 182.282596238225,
			183.200306257339, 175.856743742269, 183.517577768589]
		)
	),
	New Column( "BP 12F",
		Numeric,
		Set Values(
			[177.570953487335, 184.884491085702, 182.794049100295, 187.31279033708, ., 182.387718653956,
			184.653326274105, 184.653672194875, 184.384583007231, ., 190.972901519754, 181.46178488602,
			181.459302956398, 184.604441269869, 173.249587056935, 183.125809166649, 187.951725739917,
			190.139279669601, 183.549834391574, 171.907000056173]
		)
	),
	New Column( "BP 6F",
		Numeric,
		Set Values(
			[170.514896659448, 187.603078247176, 180.121927541929, 182.931206367403, ., 184.169322994033,
			180.368840760416, 170.403578559484, 177.427685029706, ., 174.986928330607, 184.070139882305,
			189.242086812316, 169.540004898628, 185.21824057543, 173.182049720424, 170.940897197153,
			177.823031925273, 183.621024712236, 178.774574166082]
		)
	)
);

dt &amp;lt;&amp;lt; select where( Is Missing( Sum( dt[Row(), Index( 3, 11 )] ) ) &amp;amp; dt:BP 8W == ""  );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 07 Nov 2021 06:29:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-equivalent-for-quot-select-matching-cells-quot/m-p/433805#M68363</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-11-07T06:29:44Z</dc:date>
    </item>
  </channel>
</rss>

