<?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: User Input Tabulate Column in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/User-Input-Tabulate-Column/m-p/470141#M71424</link>
    <description>&lt;P&gt;Not sure if it's my JMP Version (JMP15) but it's not working for me&lt;/P&gt;</description>
    <pubDate>Wed, 16 Mar 2022 05:59:12 GMT</pubDate>
    <dc:creator>UserID16644</dc:creator>
    <dc:date>2022-03-16T05:59:12Z</dc:date>
    <item>
      <title>User Input Tabulate Column</title>
      <link>https://community.jmp.com/t5/Discussions/User-Input-Tabulate-Column/m-p/470080#M71416</link>
      <description>&lt;P&gt;Is it possible to have a user-based column when tabulating data? I have a tabulated table but the grouping columns need to be based on the user input. I can't think of ways to do it, is it possible? pls help&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:22:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/User-Input-Tabulate-Column/m-p/470080#M71416</guid>
      <dc:creator>UserID16644</dc:creator>
      <dc:date>2023-06-11T11:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: User Input Tabulate Column</title>
      <link>https://community.jmp.com/t5/Discussions/User-Input-Tabulate-Column/m-p/470116#M71422</link>
      <description>&lt;P&gt;JMP has the functionality to request user input and then pass that information into whatever scripting is required.&amp;nbsp; I recommend that you take the time to read through the Scripting Guide.&lt;/P&gt;
&lt;P&gt;Here is a very simple example to do what you want.&amp;nbsp; Far better interfaces can be developed, but this should give you a start&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
// Open Data Table: big class.jmp
// → Data Table( "big class" )
dt = Open( "$SAMPLE_DATA/big class.jmp" );

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
nw = New Window( "Col List Box Example",
	Text Box( "Select the Grouping Columns" ),
	Col List Box( all, width( 250 ), maxSelected( 1 ) ),
	fontobj = lb = Col List Box( character ),
	OKbb = Button Box( "OK",
		theColumns = lb &amp;lt;&amp;lt; get items;
		nw &amp;lt;&amp;lt; close window;

		Tabulate(
			Show Control Panel( 0 ),
			Add Table(
				Column Table( Analysis Columns( :height, :weight ), Statistics( Mean ) ),
				Row Table( Grouping Columns( eval(theColumns) ) )
			)
		);
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 16 Mar 2022 04:36:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/User-Input-Tabulate-Column/m-p/470116#M71422</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-03-16T04:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: User Input Tabulate Column</title>
      <link>https://community.jmp.com/t5/Discussions/User-Input-Tabulate-Column/m-p/470141#M71424</link>
      <description>&lt;P&gt;Not sure if it's my JMP Version (JMP15) but it's not working for me&lt;/P&gt;</description>
      <pubDate>Wed, 16 Mar 2022 05:59:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/User-Input-Tabulate-Column/m-p/470141#M71424</guid>
      <dc:creator>UserID16644</dc:creator>
      <dc:date>2022-03-16T05:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: User Input Tabulate Column</title>
      <link>https://community.jmp.com/t5/Discussions/User-Input-Tabulate-Column/m-p/470148#M71426</link>
      <description>&lt;P&gt;It works fine under JMP 15, running Windows 10.&lt;/P&gt;
&lt;P&gt;Here is the first screen&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1647410582870.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/40851iA4D889B0008C4B9D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1647410582870.png" alt="txnelson_0-1647410582870.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I then select columns Name and Age and move them into the selection area&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_1-1647410659706.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/40852iF4DA2D39F20E9C90/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_1-1647410659706.png" alt="txnelson_1-1647410659706.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Finally I click on OK and get the following results&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_2-1647410725103.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/40853i2DDD5C8747314E54/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_2-1647410725103.png" alt="txnelson_2-1647410725103.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Mar 2022 06:05:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/User-Input-Tabulate-Column/m-p/470148#M71426</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-03-16T06:05:48Z</dc:date>
    </item>
    <item>
      <title>Re: User Input Tabulate Column</title>
      <link>https://community.jmp.com/t5/Discussions/User-Input-Tabulate-Column/m-p/470159#M71429</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;P&gt;Worked well. Thanks!&amp;nbsp;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Wed, 16 Mar 2022 08:31:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/User-Input-Tabulate-Column/m-p/470159#M71429</guid>
      <dc:creator>UserID16644</dc:creator>
      <dc:date>2022-03-16T08:31:57Z</dc:date>
    </item>
  </channel>
</rss>

