<?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: Spell out Column Name which has the min and max number in the same Row in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Spell-out-Column-Name-which-has-the-min-and-max-number-in-the/m-p/325473#M57479</link>
    <description>&lt;P&gt;How would you do this if the data columns sequence are not in order? Is there a way to do this by giving column names of interest and then generating a column that shows the max/min column name?&lt;/P&gt;</description>
    <pubDate>Thu, 22 Oct 2020 20:20:54 GMT</pubDate>
    <dc:creator>tarkan_bih</dc:creator>
    <dc:date>2020-10-22T20:20:54Z</dc:date>
    <item>
      <title>Spell out Column Name which has the min and max number in the same Row</title>
      <link>https://community.jmp.com/t5/Discussions/Spell-out-Column-Name-which-has-the-min-and-max-number-in-the/m-p/321772#M57172</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Pls help me on generating a new column formula for calling out the Column Names which has the min and max number in the same row.&lt;/P&gt;&lt;P&gt;From this&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Before.PNG" style="width: 748px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/27403i96C3971ADB78766E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Before.PNG" alt="Before.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;to this&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="after.PNG" style="width: 740px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/27404iC217B0C19E9A37BF/image-size/large?v=v2&amp;amp;px=999" role="button" title="after.PNG" alt="after.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:20:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Spell-out-Column-Name-which-has-the-min-and-max-number-in-the/m-p/321772#M57172</guid>
      <dc:creator>Nithian</dc:creator>
      <dc:date>2023-06-10T23:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: Spell out Column Name which has the min and max number in the same Row</title>
      <link>https://community.jmp.com/t5/Discussions/Spell-out-Column-Name-which-has-the-min-and-max-number-in-the/m-p/321820#M57175</link>
      <description>&lt;P&gt;This column formula should work quite generally. It's independent of column names. However, it assumes the data columns are in a sequence and the column number of the start and end columns must be set (as local variables).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Get name of column with max value:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Local( {start = 2, end = 7, L = Current Data Table()[Row(), start :: end]},
	Column( Loc Max( L ) + start - 1 ) &amp;lt;&amp;lt; get name
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And for min:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Local( {start = 2, end = 7, L = Current Data Table()[Row(), start :: end]},
	Column( Loc Min( L ) + start - 1 ) &amp;lt;&amp;lt; get name
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Oct 2020 22:23:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Spell-out-Column-Name-which-has-the-min-and-max-number-in-the/m-p/321820#M57175</guid>
      <dc:creator>ms</dc:creator>
      <dc:date>2020-10-14T22:23:41Z</dc:date>
    </item>
    <item>
      <title>Re: Spell out Column Name which has the min and max number in the same Row</title>
      <link>https://community.jmp.com/t5/Discussions/Spell-out-Column-Name-which-has-the-min-and-max-number-in-the/m-p/321847#M57176</link>
      <description>&lt;P&gt;Hi Ms Super User -&lt;/P&gt;&lt;P&gt;I tried it but not working. I found it in Excel formula, but not sure how to convert it to Jmp. As per in this screenshot&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;=INDEX($B$1:$F$1,0,MATCH(MAX($B2:$F2),$B2:$F2,0))&lt;/STRONG&gt;&lt;/SPAN&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="Max.PNG" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/27415iD53A8EFD1307C9AD/image-size/large?v=v2&amp;amp;px=999" role="button" title="Max.PNG" alt="Max.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Oct 2020 23:38:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Spell-out-Column-Name-which-has-the-min-and-max-number-in-the/m-p/321847#M57176</guid>
      <dc:creator>Nithian</dc:creator>
      <dc:date>2020-10-14T23:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: Spell out Column Name which has the min and max number in the same Row</title>
      <link>https://community.jmp.com/t5/Discussions/Spell-out-Column-Name-which-has-the-min-and-max-number-in-the/m-p/321918#M57183</link>
      <description>&lt;P&gt;What version of JMP do you use? The formula I posted utilize data table matrix notation, a feature I think came with JMP 13.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 08:33:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Spell-out-Column-Name-which-has-the-min-and-max-number-in-the/m-p/321918#M57183</guid>
      <dc:creator>ms</dc:creator>
      <dc:date>2020-10-15T08:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: Spell out Column Name which has the min and max number in the same Row</title>
      <link>https://community.jmp.com/t5/Discussions/Spell-out-Column-Name-which-has-the-min-and-max-number-in-the/m-p/322048#M57200</link>
      <description>&lt;P&gt;Hi MS&amp;nbsp;&lt;SPAN&gt;SUPER USER,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I figure it out to get it work. Thanks. Jmp14.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;It looks like we can only make it work when it's treated as local columns. Is there a way to name them by the original column name, instead of column numbering? The reason I am asking, if someone added/appended some columns in the data table, the column numbering may not work properly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 14:57:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Spell-out-Column-Name-which-has-the-min-and-max-number-in-the/m-p/322048#M57200</guid>
      <dc:creator>Nithian</dc:creator>
      <dc:date>2020-10-15T14:57:03Z</dc:date>
    </item>
    <item>
      <title>Re: Spell out Column Name which has the min and max number in the same Row</title>
      <link>https://community.jmp.com/t5/Discussions/Spell-out-Column-Name-which-has-the-min-and-max-number-in-the/m-p/325473#M57479</link>
      <description>&lt;P&gt;How would you do this if the data columns sequence are not in order? Is there a way to do this by giving column names of interest and then generating a column that shows the max/min column name?&lt;/P&gt;</description>
      <pubDate>Thu, 22 Oct 2020 20:20:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Spell-out-Column-Name-which-has-the-min-and-max-number-in-the/m-p/325473#M57479</guid>
      <dc:creator>tarkan_bih</dc:creator>
      <dc:date>2020-10-22T20:20:54Z</dc:date>
    </item>
  </channel>
</rss>

