<?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: Move Rows in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Move-Rows/m-p/607081#M80888</link>
    <description>&lt;P&gt;My suggestion is to open the Value Ordering column property, and change the order of the values in there, and then just sort the data table based upon the Parmeter column, and it will follow the Value Order you specified.&lt;/P&gt;</description>
    <pubDate>Thu, 02 Mar 2023 08:26:55 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2023-03-02T08:26:55Z</dc:date>
    <item>
      <title>Move Rows</title>
      <link>https://community.jmp.com/t5/Discussions/Move-Rows/m-p/607058#M80885</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;I have calculated the table, but I want to move rows in this table.&lt;/P&gt;&lt;P&gt;For example, I want to move the &lt;U&gt;GPIO&lt;/U&gt; row to the start of the table and the &lt;U&gt;JTAG&lt;/U&gt; row after GPIO.&lt;/P&gt;&lt;P&gt;I tried to write this script, but something went wrong, can you assist me with this script?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;dt &amp;lt;&amp;lt; Move Rows ( {"GPIO"}, At Start );&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;dt &amp;lt;&amp;lt; Move Rows ( {"JTAG"}, After( "GPIO" ) );&lt;/STRONG&gt;&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="Dennisbur_0-1677744523367.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/50629i4CFDD0CBF28B7C8C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Dennisbur_0-1677744523367.png" alt="Dennisbur_0-1677744523367.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 16:32:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Move-Rows/m-p/607058#M80885</guid>
      <dc:creator>Dennisbur</dc:creator>
      <dc:date>2023-06-08T16:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: Move Rows</title>
      <link>https://community.jmp.com/t5/Discussions/Move-Rows/m-p/607081#M80888</link>
      <description>&lt;P&gt;My suggestion is to open the Value Ordering column property, and change the order of the values in there, and then just sort the data table based upon the Parmeter column, and it will follow the Value Order you specified.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 08:26:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Move-Rows/m-p/607081#M80888</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2023-03-02T08:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: Move Rows</title>
      <link>https://community.jmp.com/t5/Discussions/Move-Rows/m-p/607109#M80889</link>
      <description>&lt;P&gt;Is there a script command to move rows in a table?&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 09:13:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Move-Rows/m-p/607109#M80889</guid>
      <dc:creator>Dennisbur</dc:creator>
      <dc:date>2023-03-02T09:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: Move Rows</title>
      <link>https://community.jmp.com/t5/Discussions/Move-Rows/m-p/607135#M80890</link>
      <description>&lt;P&gt;Here is one way of moving a row:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
DT = Current Data Table();

rowToMove = dt[5, 0];
dt &amp;lt;&amp;lt; delete row( 5 );
dt &amp;lt;&amp;lt; add rows( 1, after( 12 ) );
dt[13, 0] = rowToMove;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 02 Mar 2023 11:14:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Move-Rows/m-p/607135#M80890</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2023-03-02T11:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: Move Rows</title>
      <link>https://community.jmp.com/t5/Discussions/Move-Rows/m-p/607321#M80892</link>
      <description>&lt;P&gt;&amp;lt;&amp;lt; Move Rows seems to work with selected rows&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
r = dt &amp;lt;&amp;lt; Select Rows([5, 7, 8, 10]);
Wait(2);
r &amp;lt;&amp;lt; Move Rows(At Start);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1677762185763.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/50633i75A3F734385EE082/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1677762185763.png" alt="jthi_0-1677762185763.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 13:03:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Move-Rows/m-p/607321#M80892</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-03-02T13:03:38Z</dc:date>
    </item>
  </channel>
</rss>

