<?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: Columns Manager &amp;gt; Make Into Data Table Script in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Columns-Manager-gt-Make-Into-Data-Table-Script/m-p/883815#M104790</link>
    <description>&lt;P&gt;Columns manager seems to return a bit weird reference, and you have to do some extra to get the data table out (&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2026"&gt;@jules&lt;/a&gt;&amp;nbsp;not sure if this is fixed in JMP19). Here is one more option&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
cm = dt &amp;lt;&amp;lt; Columns Manager(
	Hide Hidden Columns(0),
	Hide Excluded Columns(0),
	Include Extended Statistics(1),
	Force calculations for all numeric columns(1),
	Force calculations for all categorical columns(1)
);
wait(0);
(cm &amp;lt;&amp;lt; top parent)[TableBox(1)] &amp;lt;&amp;lt; Make into Data Table();&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I'm not sure if wait(0) will be always enough for columns manager as I think it can dynamically calculate the statistics. And if you have column groups, you will have to expand those first&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Probe.jmp");
dt &amp;lt;&amp;lt; Expand All Column Groups;
cm = dt &amp;lt;&amp;lt; Columns Manager(
	Hide Hidden Columns(0),
	Hide Excluded Columns(0),
	Include Extended Statistics(1),
	Force calculations for all numeric columns(1),
	Force calculations for all categorical columns(1)
);
wait(0);
(cm &amp;lt;&amp;lt; top parent)[TableBox(1)] &amp;lt;&amp;lt; Make into Data Table();&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Have you tried if the Data Dictionary would be enough for your use case?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1751949199518.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/77919i166A23E249D72286/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1751949199518.png" alt="jthi_0-1751949199518.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 08 Jul 2025 04:33:39 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2025-07-08T04:33:39Z</dc:date>
    <item>
      <title>Columns Manager &gt; Make Into Data Table Script</title>
      <link>https://community.jmp.com/t5/Discussions/Columns-Manager-gt-Make-Into-Data-Table-Script/m-p/883796#M104784</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I tried manually clicking the&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Columns Manager&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;and the&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Make into Data Table&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;option, and the script was saved like this. When I duplicated and ran the script, the attached error was encountered. How can I generate a data table from the Columns Manager using a JSL script?&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
Assign( rpt );
Wait( 0 );
rpt["Columns Manager", Table Box( 1 )] &amp;lt;&amp;lt; Make Into Data Table;
rpt &amp;lt;&amp;lt; Close Window;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 07 Jul 2025 23:54:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Columns-Manager-gt-Make-Into-Data-Table-Script/m-p/883796#M104784</guid>
      <dc:creator>PieFerret952</dc:creator>
      <dc:date>2025-07-07T23:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: Columns Manager &gt; Make Into Data Table Script</title>
      <link>https://community.jmp.com/t5/Discussions/Columns-Manager-gt-Make-Into-Data-Table-Script/m-p/883813#M104789</link>
      <description>&lt;P&gt;Here is the script that I produced that creates a data table from Columns Manager&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt=current data table();
main menu("columns manager");
rpt = window(dt &amp;lt;&amp;lt; get name || " - Columns Manager");
Wait( 0 );
rpt["Columns Manager", Table Box( 1 )] &amp;lt;&amp;lt; Make Combined Data Table;
rpt &amp;lt;&amp;lt; Close Window;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 08 Jul 2025 04:12:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Columns-Manager-gt-Make-Into-Data-Table-Script/m-p/883813#M104789</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2025-07-08T04:12:52Z</dc:date>
    </item>
    <item>
      <title>Re: Columns Manager &gt; Make Into Data Table Script</title>
      <link>https://community.jmp.com/t5/Discussions/Columns-Manager-gt-Make-Into-Data-Table-Script/m-p/883815#M104790</link>
      <description>&lt;P&gt;Columns manager seems to return a bit weird reference, and you have to do some extra to get the data table out (&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2026"&gt;@jules&lt;/a&gt;&amp;nbsp;not sure if this is fixed in JMP19). Here is one more option&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
cm = dt &amp;lt;&amp;lt; Columns Manager(
	Hide Hidden Columns(0),
	Hide Excluded Columns(0),
	Include Extended Statistics(1),
	Force calculations for all numeric columns(1),
	Force calculations for all categorical columns(1)
);
wait(0);
(cm &amp;lt;&amp;lt; top parent)[TableBox(1)] &amp;lt;&amp;lt; Make into Data Table();&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I'm not sure if wait(0) will be always enough for columns manager as I think it can dynamically calculate the statistics. And if you have column groups, you will have to expand those first&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Probe.jmp");
dt &amp;lt;&amp;lt; Expand All Column Groups;
cm = dt &amp;lt;&amp;lt; Columns Manager(
	Hide Hidden Columns(0),
	Hide Excluded Columns(0),
	Include Extended Statistics(1),
	Force calculations for all numeric columns(1),
	Force calculations for all categorical columns(1)
);
wait(0);
(cm &amp;lt;&amp;lt; top parent)[TableBox(1)] &amp;lt;&amp;lt; Make into Data Table();&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Have you tried if the Data Dictionary would be enough for your use case?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1751949199518.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/77919i166A23E249D72286/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1751949199518.png" alt="jthi_0-1751949199518.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jul 2025 04:33:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Columns-Manager-gt-Make-Into-Data-Table-Script/m-p/883815#M104790</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-07-08T04:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: Columns Manager &gt; Make Into Data Table Script</title>
      <link>https://community.jmp.com/t5/Discussions/Columns-Manager-gt-Make-Into-Data-Table-Script/m-p/883817#M104791</link>
      <description>&lt;P&gt;Thank you very much! That worked.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jul 2025 05:49:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Columns-Manager-gt-Make-Into-Data-Table-Script/m-p/883817#M104791</guid>
      <dc:creator>PieFerret952</dc:creator>
      <dc:date>2025-07-08T05:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: Columns Manager &gt; Make Into Data Table Script</title>
      <link>https://community.jmp.com/t5/Discussions/Columns-Manager-gt-Make-Into-Data-Table-Script/m-p/883819#M104792</link>
      <description>&lt;P&gt;Thank you! This worked also.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jul 2025 05:54:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Columns-Manager-gt-Make-Into-Data-Table-Script/m-p/883819#M104792</guid>
      <dc:creator>PieFerret952</dc:creator>
      <dc:date>2025-07-08T05:54:55Z</dc:date>
    </item>
  </channel>
</rss>

