<?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: Stacking Columns in Script in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Stacking-Columns-in-Script/m-p/1724#M1724</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please note that in JMP9 if you fail to generate correctly the list it will crash totally&lt;/P&gt;&lt;P&gt;for example this wil do:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;listaNDD = {"5932_NDD","6038_NDD"};&lt;/P&gt;&lt;P&gt;def5932_NDD = {"chips","bubbles"};&lt;/P&gt;&lt;P&gt;def6038_NDD = {"big on top","small on top"};&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for(i=1, i&amp;lt;(NItems(listaNDD)+1), i++, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; a=listaNDD&lt;I&gt;;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; c=Concat(a,"_stacked");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; d=Concat("def",a);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Open( Concat(a,".jmp"), invisible );&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Open( b, invisible );&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data Table( a ) &amp;lt;&amp;lt; Stack(&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; columns((d)),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Source Label Column( "class" ),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Stacked Data Column( "density" ),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name( "Non-stacked columns" )(Keep(&amp;nbsp;&amp;nbsp;&amp;nbsp; :Split,&amp;nbsp;&amp;nbsp;&amp;nbsp; :Lot ID, :WID)),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Output Table( c )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; );&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;because d it's not the list but a variable containing the name of the list ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Jan 2012 15:19:23 GMT</pubDate>
    <dc:creator>dghidoni</dc:creator>
    <dc:date>2012-01-23T15:19:23Z</dc:date>
    <item>
      <title>Stacking Columns in Script</title>
      <link>https://community.jmp.com/t5/Discussions/Stacking-Columns-in-Script/m-p/1714#M1714</link>
      <description>I have a couple of questions about stacking data columns in a script. When I do it manually, I get the following script from JMP:&lt;BR /&gt;&lt;BR /&gt;Data Table( "Untitled 11" ) &amp;lt;&amp;lt; Stack(&lt;BR /&gt;columns(&lt;BR /&gt;:Name( "EFL 20508-17DT_CG_100ms" ),&lt;BR /&gt;:Name( "FFL 20508-17DT_CG_100ms" ),&lt;BR /&gt;:Name( "EFL 20508-18DT_CG_100ms" ),&lt;BR /&gt;:Name( "FFL 20508-18DT_CG_100ms" ),&lt;BR /&gt;:Name( "EFL 20508-19DT_NOCG_2" ),&lt;BR /&gt;:Name( "FFL 20508-19DT_NOCG_2" )&lt;BR /&gt;),&lt;BR /&gt;Source Label Column( "Label" ),&lt;BR /&gt;Stacked Data Column( "Data" ),&lt;BR /&gt;Number of Series( 2 )&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;In my script, I have a list variable (MyList1) containing the column names, and I would like to stack those columns using "Multiple Series Stack" to create a new table. Also, for "Number of Series" I would like to include NItems(MyList2). Can someone help me with the syntax?&lt;BR /&gt;&lt;BR /&gt;I think this should work:&lt;BR /&gt;&lt;BR /&gt;StackDT = SplitDT &amp;lt;&amp;lt; Stack( Columns( MyList1 ),&lt;BR /&gt;Source Label Column( "Source" ),&lt;BR /&gt;Stacked Data Column( "Data" ),&lt;BR /&gt;Number of Series( NItems( MyList2 ) )&lt;BR /&gt;)&lt;BR /&gt;);&lt;BR /&gt;&lt;BR /&gt;but it gives me "Column not found in access or evaluation of 'Bad Argument' " in the log.</description>
      <pubDate>Mon, 26 Apr 2010 17:31:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Stacking-Columns-in-Script/m-p/1714#M1714</guid>
      <dc:creator>jmp_jr</dc:creator>
      <dc:date>2010-04-26T17:31:17Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking Columns in Script</title>
      <link>https://community.jmp.com/t5/Discussions/Stacking-Columns-in-Script/m-p/1715#M1715</link>
      <description>I think&lt;BR /&gt;&lt;BR /&gt;Columns(eval(MyList1))&lt;BR /&gt;&lt;BR /&gt;should work.&lt;BR /&gt;&lt;BR /&gt;You might want to call tech support and report it as a bug, or suggestion.</description>
      <pubDate>Wed, 28 Apr 2010 14:58:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Stacking-Columns-in-Script/m-p/1715#M1715</guid>
      <dc:creator>chungwei</dc:creator>
      <dc:date>2010-04-28T14:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking Columns in Script</title>
      <link>https://community.jmp.com/t5/Discussions/Stacking-Columns-in-Script/m-p/1716#M1716</link>
      <description>Yes.  Evaluating the list does make it work.  The list used for "Number of Series" also has to be evaluated.&lt;BR /&gt;&lt;BR /&gt;Thanks for the reply.</description>
      <pubDate>Wed, 28 Apr 2010 15:27:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Stacking-Columns-in-Script/m-p/1716#M1716</guid>
      <dc:creator>jmp_jr</dc:creator>
      <dc:date>2010-04-28T15:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking Columns in Script</title>
      <link>https://community.jmp.com/t5/Discussions/Stacking-Columns-in-Script/m-p/1717#M1717</link>
      <description>I have a related question about stacking columns.  I have been given an Excel spreadsheet that I need to turn into something useful.  The spreadsheet looks like this:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-family: Courier New; font-weight: bold; text-decoration: underline;"&amp;gt;IDNo&amp;nbsp;&amp;nbsp;Ctry&amp;nbsp;&lt;BR /&gt;Sub&amp;nbsp;&amp;nbsp;Sub&lt;BR /&gt;Date&amp;nbsp;&amp;nbsp;Ctry&amp;nbsp;&amp;nbsp;Sub&amp;nbsp;&amp;nbsp;Sub&lt;BR /&gt;Date&amp;nbsp; Ctry&amp;nbsp;&amp;nbsp;Sub&amp;nbsp;&amp;nbsp;Sub Date&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; style="font-family: Courier New;"&amp;gt;&lt;BR /&gt;&lt;SPAN style="font-family: Courier New;"&gt;a123&amp;nbsp;&amp;nbsp;US&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;N&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Can&amp;nbsp;&amp;nbsp;&lt;BR /&gt;Y&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4/1/2010&amp;nbsp;&amp;nbsp;Braz&amp;nbsp;&lt;BR /&gt;Y&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3/15/2009&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; style="font-family: Courier New;"&amp;gt;&lt;BR /&gt;&lt;SPAN style="font-family: Courier New;"&gt;b567&amp;nbsp;&amp;nbsp;US&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;Y&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;5/1/2009&amp;nbsp;&amp;nbsp;Can&amp;nbsp;&amp;nbsp;&lt;BR /&gt;N&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;Braz&amp;nbsp; N&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; style="font-family: Courier New;"&amp;gt;&lt;BR /&gt;&lt;SPAN style="font-family: Courier New;"&gt;c392&amp;nbsp;&amp;nbsp;US&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;Y&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;6/1/2008&amp;nbsp;&amp;nbsp;Can&amp;nbsp;&amp;nbsp;&lt;BR /&gt;Y&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3/2/2001&amp;nbsp;&amp;nbsp;Braz&amp;nbsp;&lt;BR /&gt;Y&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;12/15/2008&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;etc.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I need to stack the results so they look like this:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt; style="font-family: Courier New; font-weight: bold; text-decoration: underline;"&amp;gt;IDNo&amp;nbsp;&lt;BR /&gt;Ctry&amp;nbsp; Sub&amp;nbsp;&amp;nbsp;Sub Date&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; style="font-family: Courier New;"&amp;gt;&lt;BR /&gt;&lt;SPAN style="font-family: Courier New;"&gt;a123&amp;nbsp;&lt;BR /&gt;US&amp;nbsp;&amp;nbsp;&amp;nbsp; N&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; style="font-family: Courier New;"&amp;gt;&lt;BR /&gt;&lt;SPAN style="font-family: Courier New;"&gt;b567&amp;nbsp;&lt;BR /&gt;US&amp;nbsp;&amp;nbsp;&amp;nbsp; Y&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;5/1/2009&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; style="font-family: Courier New;"&amp;gt;&lt;BR /&gt;&lt;SPAN style="font-family: Courier New;"&gt;c392&amp;nbsp;&lt;BR /&gt;US&amp;nbsp;&amp;nbsp;&amp;nbsp; Y&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;6/1/2008&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; style="font-family: Courier New;"&amp;gt;&lt;BR /&gt;&lt;SPAN style="font-family: Courier New;"&gt;a123&amp;nbsp;&lt;BR /&gt;Can&amp;nbsp;&amp;nbsp;&lt;BR /&gt;Y&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4/1/2010&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; style="font-family: Courier New;"&amp;gt;&lt;BR /&gt;&lt;SPAN style="font-family: Courier New;"&gt;b567&amp;nbsp;&lt;BR /&gt;Can&amp;nbsp;&amp;nbsp; N&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; style="font-family: Courier New;"&amp;gt;&lt;BR /&gt;&lt;SPAN style="font-family: Courier New;"&gt;c392&amp;nbsp;&lt;BR /&gt;Can&amp;nbsp;&amp;nbsp;&lt;BR /&gt;Y&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3/2/2001&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; style="font-family: Courier New;"&amp;gt;&lt;BR /&gt;&lt;SPAN style="font-family: Courier New;"&gt;a123&amp;nbsp;&lt;BR /&gt;Braz&amp;nbsp; Y&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3-15-2009&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; style="font-family: Courier New;"&amp;gt;&lt;BR /&gt;&lt;SPAN style="font-family: Courier New;"&gt;b567&amp;nbsp;&lt;BR /&gt;Braz&amp;nbsp; N&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt; style="font-family: Courier New;"&amp;gt;&lt;BR /&gt;&lt;SPAN style="font-family: Courier New;"&gt;c392&amp;nbsp;&lt;BR /&gt;Braz&amp;nbsp; Y&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;12/15/2008&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;In the real table there are about 20 countries going across.  Is this something that the STACK command can handle?  I.e. instead of just stacking one column, I need to stack three columns at once.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Peter</description>
      <pubDate>Thu, 29 Apr 2010 13:58:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Stacking-Columns-in-Script/m-p/1717#M1717</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2010-04-29T13:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking Columns in Script</title>
      <link>https://community.jmp.com/t5/Discussions/Stacking-Columns-in-Script/m-p/1718#M1718</link>
      <description>Yes. Look up Multiple Series Stack in the docs. There seems to be a minor bug which results in stacked date columns in multiple series stacking not being formatted as dates so you'll have to apply that format after stacking. Single column stacking of dates does maintain date format. You will also have to clean up some extra columns that result from the stacking.</description>
      <pubDate>Thu, 29 Apr 2010 15:48:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Stacking-Columns-in-Script/m-p/1718#M1718</guid>
      <dc:creator>mpb</dc:creator>
      <dc:date>2010-04-29T15:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking Columns in Script</title>
      <link>https://community.jmp.com/t5/Discussions/Stacking-Columns-in-Script/m-p/1719#M1719</link>
      <description>Thanks that worked perfectly!  This will save us a tremendous amount of time.</description>
      <pubDate>Thu, 29 Apr 2010 19:52:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Stacking-Columns-in-Script/m-p/1719#M1719</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2010-04-29T19:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking Columns in Script</title>
      <link>https://community.jmp.com/t5/Discussions/Stacking-Columns-in-Script/m-p/1720#M1720</link>
      <description>Maybe I can append a further question:&lt;BR /&gt;&lt;BR /&gt;I want to stack several columns, column wise. This is easy going the menu way - simply by unchecking 'Stack by Row'. But I have not found an equivalent option on the stack scripting command.&lt;BR /&gt;&lt;BR /&gt;Is it intended to go the cumbersome way to first create a transposed intermediate table, and then applying the stacking on that one?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;esa</description>
      <pubDate>Wed, 24 Nov 2010 13:02:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Stacking-Columns-in-Script/m-p/1720#M1720</guid>
      <dc:creator />
      <dc:date>2010-11-24T13:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking Columns in Script</title>
      <link>https://community.jmp.com/t5/Discussions/Stacking-Columns-in-Script/m-p/1721#M1721</link>
      <description>You simply add "Stack By Row(0)" to your Stack message. Here's an example:&lt;BR /&gt;&lt;BR /&gt;&amp;lt;--&lt;BR /&gt;Data Table( "Solubility" ) &amp;lt;&amp;lt; Stack(&lt;BR /&gt;	columns(&lt;BR /&gt;		:Name( "1-Octanol" ),&lt;BR /&gt;		:Ether,&lt;BR /&gt;		:Chloroform,&lt;BR /&gt;		:Benzene,&lt;BR /&gt;		:Carbon Tetrachloride,&lt;BR /&gt;		:Hexane&lt;BR /&gt;	),&lt;BR /&gt;	Source Label Column( "Label" ),&lt;BR /&gt;	Stacked Data Column( "Data" ),&lt;BR /&gt;	Stack By Row( 0 )&lt;BR /&gt;)&lt;BR /&gt;--&amp;gt;</description>
      <pubDate>Wed, 24 Nov 2010 15:09:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Stacking-Columns-in-Script/m-p/1721#M1721</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2010-11-24T15:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking Columns in Script</title>
      <link>https://community.jmp.com/t5/Discussions/Stacking-Columns-in-Script/m-p/1722#M1722</link>
      <description>Glad to here that. I expected something like this, but was unable to retrieve this information from anywhere within the documentation.&lt;BR /&gt;&lt;BR /&gt;Thank you.</description>
      <pubDate>Wed, 24 Nov 2010 20:36:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Stacking-Columns-in-Script/m-p/1722#M1722</guid>
      <dc:creator />
      <dc:date>2010-11-24T20:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking Columns in Script</title>
      <link>https://community.jmp.com/t5/Discussions/Stacking-Columns-in-Script/m-p/1723#M1723</link>
      <description>I'm glad that will help.&lt;BR /&gt;&lt;BR /&gt;In a case like this, it's easiest to perform the action interactively by clicking and then examine the "Source" script in the resulting table.&lt;BR /&gt;&lt;BR /&gt;Jeff</description>
      <pubDate>Wed, 24 Nov 2010 21:17:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Stacking-Columns-in-Script/m-p/1723#M1723</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2010-11-24T21:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: Stacking Columns in Script</title>
      <link>https://community.jmp.com/t5/Discussions/Stacking-Columns-in-Script/m-p/1724#M1724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please note that in JMP9 if you fail to generate correctly the list it will crash totally&lt;/P&gt;&lt;P&gt;for example this wil do:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;listaNDD = {"5932_NDD","6038_NDD"};&lt;/P&gt;&lt;P&gt;def5932_NDD = {"chips","bubbles"};&lt;/P&gt;&lt;P&gt;def6038_NDD = {"big on top","small on top"};&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for(i=1, i&amp;lt;(NItems(listaNDD)+1), i++, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; a=listaNDD&lt;I&gt;;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; c=Concat(a,"_stacked");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; d=Concat("def",a);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Open( Concat(a,".jmp"), invisible );&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Open( b, invisible );&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data Table( a ) &amp;lt;&amp;lt; Stack(&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; columns((d)),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Source Label Column( "class" ),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Stacked Data Column( "density" ),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name( "Non-stacked columns" )(Keep(&amp;nbsp;&amp;nbsp;&amp;nbsp; :Split,&amp;nbsp;&amp;nbsp;&amp;nbsp; :Lot ID, :WID)),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Output Table( c )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; );&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;because d it's not the list but a variable containing the name of the list ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jan 2012 15:19:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Stacking-Columns-in-Script/m-p/1724#M1724</guid>
      <dc:creator>dghidoni</dc:creator>
      <dc:date>2012-01-23T15:19:23Z</dc:date>
    </item>
  </channel>
</rss>

