<?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: Find Min and Max from multiple columns ( Same name of colums) in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40655#M23791</link>
    <description>&lt;P&gt;The JMP platforms in JMP are very functional, and that's true for 'Tables &amp;gt; Stck' too. The documentation is generally good, and if not, you can suggest how it could be improved.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Take a look at the &lt;A href="http://www.jmp.com/support/help/13-1/Example_of_Stacking_into_More_Than_One_Column.shtml" target="_self"&gt;Multiple Series Stack&lt;/A&gt; option.&lt;/P&gt;</description>
    <pubDate>Mon, 19 Jun 2017 14:10:18 GMT</pubDate>
    <dc:creator>ian_jmp</dc:creator>
    <dc:date>2017-06-19T14:10:18Z</dc:date>
    <item>
      <title>Find Min and Max from multiple columns ( Same name of colums)</title>
      <link>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40622#M23780</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have huge data in excel and it has multiple columes with same name ( this is format i get from tester). And i would like to calculate min, max, stdev and mean from all columes.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to open data in JMP but JMP remanes the colume name to ( Av, Av1, Av2, Av3.......) and then if i use tabulate it shows min, max for Av, Av1, Av2.... etc., but i wanted min and max for all ( Av, Av1, Av3, ...).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Pls help. Attached raw data for.&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 664px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/6500i50A3C7F78FAB1EC0/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2017 10:41:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40622#M23780</guid>
      <dc:creator>pankajet</dc:creator>
      <dc:date>2017-06-19T10:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: Find Min and Max from multiple columns ( Same name of colums)</title>
      <link>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40625#M23783</link>
      <description>&lt;P&gt;Try using '&lt;A href="http://www.jmp.com/support/help/Stack_Columns.shtml" target="_self"&gt;Tables &amp;gt; Stack&lt;/A&gt;' before doing the tabulation.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2017 11:20:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40625#M23783</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2017-06-19T11:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: Find Min and Max from multiple columns ( Same name of colums)</title>
      <link>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40628#M23786</link>
      <description>&lt;P&gt;I didn't get fully.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What i tried 'table &amp;gt; stack" but still see A1, A2, A3.... etc.. Hence tabulate still not doing over all min and max.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2017 12:54:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40628#M23786</guid>
      <dc:creator>pankajet</dc:creator>
      <dc:date>2017-06-19T12:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: Find Min and Max from multiple columns ( Same name of colums)</title>
      <link>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40631#M23788</link>
      <description>&lt;P&gt;You will have to take more care in reading the XLSX, but if you put it on the Desktop, the script below gives the idea.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;NamesDefaultToHere(1);
// Put the .xlsx on the Desktop and open it
dt = Open("$DESKTOP//Char Summary_web.xlsx");
// Just use the first few columns as a demonstration
dt &amp;lt;&amp;lt; deleteColumns(17::NCol(dt));
// Stack the data
dt2 = dt &amp;lt;&amp;lt; Stack(
	columns(
		:ZA 2,
		:ZA 3,
		:ZA 4,
		:ZA 5,
		:ZA 6,
		:ZA 7,
		:ZA 8,
		:ZA 9,
		:ZA 10,
		:ZA 11,
		:ZA 12,
		:ZA 13,
		:ZA 14
	),
	Source Label Column( "Label" ),
	Stacked Data Column( "Data" ),
	OutputTable((dt &amp;lt;&amp;lt; getName)||" Stacked")
);
// Use Tabulate
dt2 &amp;lt;&amp;lt; Tabulate(
				Show Control Panel( 0 ),
				Add Table(
					Column Table( Analysis Columns( :Data ), Statistics( Mean, Std Dev ) ),
					Row Table( Grouping Columns( :wafer ) )
				)
			);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 19 Jun 2017 13:22:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40631#M23788</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2017-06-19T13:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: Find Min and Max from multiple columns ( Same name of colums)</title>
      <link>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40650#M23790</link>
      <description>&lt;P&gt;Super.. It worked half way.. I have multiple parameters... Av1, Av2.... and FIMO, FIMO2, ....which needs to be seperated as well. The current script stack everything but doen't decode label to original names&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="image.png" style="width: 449px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/6501i72C99A38F8E7894D/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2017 14:00:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40650#M23790</guid>
      <dc:creator>pankajet</dc:creator>
      <dc:date>2017-06-19T14:00:29Z</dc:date>
    </item>
    <item>
      <title>Re: Find Min and Max from multiple columns ( Same name of colums)</title>
      <link>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40655#M23791</link>
      <description>&lt;P&gt;The JMP platforms in JMP are very functional, and that's true for 'Tables &amp;gt; Stck' too. The documentation is generally good, and if not, you can suggest how it could be improved.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Take a look at the &lt;A href="http://www.jmp.com/support/help/13-1/Example_of_Stacking_into_More_Than_One_Column.shtml" target="_self"&gt;Multiple Series Stack&lt;/A&gt; option.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2017 14:10:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40655#M23791</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2017-06-19T14:10:18Z</dc:date>
    </item>
    <item>
      <title>Re: Find Min and Max from multiple columns ( Same name of colums)</title>
      <link>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40715#M23794</link>
      <description>&lt;P&gt;You didn't get me. My problem label still has A, A10, A11, A12, ... I want min and max from all Av.. A10....&lt;/P&gt;&lt;P&gt;Pls help.&amp;nbsp;&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="image.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/6502i8B44EC41EA101E66/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2017 17:13:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40715#M23794</guid>
      <dc:creator>pankajet</dc:creator>
      <dc:date>2017-06-19T17:13:29Z</dc:date>
    </item>
    <item>
      <title>Re: Find Min and Max from multiple columns ( Same name of colums)</title>
      <link>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40724#M23795</link>
      <description>&lt;P&gt;Just don't drag the column called Label to the Tabulate Platform. &amp;nbsp;Just drag the column called Data. &amp;nbsp;Dragging the Label column is forcing the agragation.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2017 17:57:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40724#M23795</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-06-19T17:57:05Z</dc:date>
    </item>
    <item>
      <title>Re: Find Min and Max from multiple columns ( Same name of colums)</title>
      <link>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40738#M23796</link>
      <description>&lt;P&gt;Sorry, I didn't get. Pls show me. I have attahced stackd file. You will see many lables Av, A10, .... I want min and max from Av.xx lable. Similarity from all other labels&amp;nbsp;&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="image.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/6503iD55A87B4BEEC9E3C/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2017 19:08:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40738#M23796</guid>
      <dc:creator>pankajet</dc:creator>
      <dc:date>2017-06-19T19:08:07Z</dc:date>
    </item>
    <item>
      <title>Re: Find Min and Max from multiple columns ( Same name of colums)</title>
      <link>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40744#M23797</link>
      <description>&lt;P&gt;Is this what you are looking for?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tabulate.jpg" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/6504i4A8AB2A8EC0A6F84/image-size/large?v=v2&amp;amp;px=999" role="button" title="tabulate.jpg" alt="tabulate.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;If it is, all I did was to add a new column to your stacked data table, calling it "New Label" and specifying a formula for the column as:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Word(1, :Label, " ")&lt;/P&gt;
&lt;P&gt;The interpretation of the formula is to look at the "Label" column, and take the first Word from that column, where the delimiter is based upon blanks, " "&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2017 19:30:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40744#M23797</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-06-19T19:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: Find Min and Max from multiple columns ( Same name of colums)</title>
      <link>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40795#M23835</link>
      <description>&lt;P&gt;Pls help to add&amp;nbsp;Word(1, :Label, " ") in above script.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 13:39:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40795#M23835</guid>
      <dc:creator>pankajet</dc:creator>
      <dc:date>2017-06-20T13:39:33Z</dc:date>
    </item>
    <item>
      <title>Re: Find Min and Max from multiple columns ( Same name of colums)</title>
      <link>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40815#M23846</link>
      <description>&lt;P&gt;All of what I am going to show you below is covered in the Using JMP book&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Help==&amp;gt;Books==&amp;gt;Using JMP&lt;/P&gt;
&lt;P&gt;What needs to be done is to create a new column in your data table, and apply a formula to the column.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1.&amp;nbsp;Open the stacked data table and click on the red triangle in the column area above the row state column.&amp;nbsp; Select "New Column"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="nc1.PNG" style="width: 747px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/6514i512BB9CA06BAD00C/image-size/large?v=v2&amp;amp;px=999" role="button" title="nc1.PNG" alt="nc1.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;2. The Column Info window will open.&amp;nbsp; Change the name of the new column to whatever you want(I chose "Label 2").&amp;nbsp; Also change the Modeling Type to "Character"&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="nc2.PNG" style="width: 598px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/6515i62547611341FA0C4/image-size/large?v=v2&amp;amp;px=999" role="button" title="nc2.PNG" alt="nc2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;3. Click on OK and then Right Click on the header area of the new column and select "Formula"&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="nc3.PNG" style="width: 815px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/6516iD9299F53596D5E34/image-size/large?v=v2&amp;amp;px=999" role="button" title="nc3.PNG" alt="nc3.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;4. In the formula editor, double click on the box titled "No Formula"&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="nc4.PNG" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/6517i041DADD08DDB6A3F/image-size/large?v=v2&amp;amp;px=999" role="button" title="nc4.PNG" alt="nc4.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;5. Rather than doing the point and click formula building that we could do, with this simple formula, we just need to type it into the box&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="nc5.PNG" style="width: 995px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/6518iE5DE49AD5E5B3DAA/image-size/large?v=v2&amp;amp;px=999" role="button" title="nc5.PNG" alt="nc5.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;6. Once the typing is done, just click on OK or Apply and the formula will generate the new values&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="nc6.PNG" style="width: 800px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/6519iB8E86C3EDF78313C/image-size/large?v=v2&amp;amp;px=999" role="button" title="nc6.PNG" alt="nc6.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;You can now use this new column in your Tabulate Platform&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 15:41:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Find-Min-and-Max-from-multiple-columns-Same-name-of-colums/m-p/40815#M23846</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-06-20T15:41:00Z</dc:date>
    </item>
  </channel>
</rss>

