<?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: Reorder by Data Type greyed out in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Reorder-by-Data-Type-greyed-out/m-p/777240#M95857</link>
    <description>&lt;P&gt;Is there &lt;U&gt;any&lt;/U&gt; &lt;STRONG&gt;column group&lt;/STRONG&gt; in your table?&lt;BR /&gt;Seems that the commands get disabled if there is one.&lt;/P&gt;</description>
    <pubDate>Mon, 29 Jul 2024 17:26:23 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2024-07-29T17:26:23Z</dc:date>
    <item>
      <title>Reorder by Data Type greyed out</title>
      <link>https://community.jmp.com/t5/Discussions/Reorder-by-Data-Type-greyed-out/m-p/777211#M95853</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to reorder over 2000 columns by data type (character vs numeric), however, the "Reorder by Data Type" option is greyed out in the Column menu (see image). &amp;nbsp;The columns are not grouped. &amp;nbsp;I'm using JMP18 on a Mac.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 16:06:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reorder-by-Data-Type-greyed-out/m-p/777211#M95853</guid>
      <dc:creator>EH1</dc:creator>
      <dc:date>2024-07-29T16:06:23Z</dc:date>
    </item>
    <item>
      <title>Re: Reorder by Data Type greyed out</title>
      <link>https://community.jmp.com/t5/Discussions/Reorder-by-Data-Type-greyed-out/m-p/777222#M95854</link>
      <description>&lt;P&gt;Not all options are grayed out, if you click on Move selected columns, you will get a window that will give you choices on moving the selected columns.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1722269542519.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/66574iFE478E05CC2AEA12/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1722269542519.png" alt="txnelson_0-1722269542519.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 16:12:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reorder-by-Data-Type-greyed-out/m-p/777222#M95854</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-07-29T16:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: Reorder by Data Type greyed out</title>
      <link>https://community.jmp.com/t5/Discussions/Reorder-by-Data-Type-greyed-out/m-p/777223#M95855</link>
      <description>&lt;P&gt;Hi - I'm trying to separate all of the character columns from the numeric columns, but currently they are all mixed together. &amp;nbsp;If I select each character column individually, I could then use the "Move selected columns" feature. However, since there are over 2000 columns, I was hoping there would be a faster way than selecting columns one by one.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 16:22:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reorder-by-Data-Type-greyed-out/m-p/777223#M95855</guid>
      <dc:creator>EH1</dc:creator>
      <dc:date>2024-07-29T16:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: Reorder by Data Type greyed out</title>
      <link>https://community.jmp.com/t5/Discussions/Reorder-by-Data-Type-greyed-out/m-p/777235#M95856</link>
      <description>&lt;P&gt;Using the Column Manager may be able to do the selection you want, but the following simple script will do it quickly.&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 = Current Data Table();

For( i = 1, i &amp;lt;= N Cols( dt ), i++,
	If( Column( i ) &amp;lt;&amp;lt; get data type == "Character",
		Column( i ) &amp;lt;&amp;lt; set selected
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You can also use JSL to do the moving&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt &amp;lt;&amp;lt; move selected columns(To First);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 29 Jul 2024 17:01:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reorder-by-Data-Type-greyed-out/m-p/777235#M95856</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-07-29T17:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: Reorder by Data Type greyed out</title>
      <link>https://community.jmp.com/t5/Discussions/Reorder-by-Data-Type-greyed-out/m-p/777240#M95857</link>
      <description>&lt;P&gt;Is there &lt;U&gt;any&lt;/U&gt; &lt;STRONG&gt;column group&lt;/STRONG&gt; in your table?&lt;BR /&gt;Seems that the commands get disabled if there is one.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 17:26:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reorder-by-Data-Type-greyed-out/m-p/777240#M95857</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-07-29T17:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: Reorder by Data Type greyed out</title>
      <link>https://community.jmp.com/t5/Discussions/Reorder-by-Data-Type-greyed-out/m-p/777430#M95883</link>
      <description>&lt;P&gt;Hi Jim - thank you so much! &amp;nbsp;This worked! Again, thank you!!&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2024 14:02:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reorder-by-Data-Type-greyed-out/m-p/777430#M95883</guid>
      <dc:creator>EH1</dc:creator>
      <dc:date>2024-07-30T14:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: Reorder by Data Type greyed out</title>
      <link>https://community.jmp.com/t5/Discussions/Reorder-by-Data-Type-greyed-out/m-p/777431#M95884</link>
      <description>&lt;P&gt;Oh, wow! &amp;nbsp;You're right... the columns I wanted to sort were not grouped, but I did have some other columns grouped. &amp;nbsp;Removing all groups enabled the menu. &amp;nbsp;Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2024 14:04:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reorder-by-Data-Type-greyed-out/m-p/777431#M95884</guid>
      <dc:creator>EH1</dc:creator>
      <dc:date>2024-07-30T14:04:41Z</dc:date>
    </item>
  </channel>
</rss>

