<?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 how to assign a column to a list? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/how-to-assign-a-column-to-a-list/m-p/5877#M5876</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In JSL, there is a column diag function in which a column in a table can be assigned to a list by using ColList function. When the script is run, user needs to click on a button to make the assignment happens. It requires interactive user input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Col_dlg = ColumnDialog(&lt;/P&gt;&lt;P&gt;&amp;nbsp; Title("Variable Assignment"),&lt;/P&gt;&lt;P&gt;&amp;nbsp; ::x = ColList("Run ID", MinCol(1), MaxCol(1), Columns(:LOT)),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; .....&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to write a script such that a column can be assigned to a list without user clicking on the button on the dialog window (no dialog window will be shown when it runs)?&lt;/P&gt;&lt;P&gt;I tried:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ::x = ColList("Run ID (Required)", MinCol(1), MaxCol(1), Columns(:LOT));&lt;/P&gt;&lt;P&gt; ::x = :LOT &amp;lt;&amp;lt; Get Values;&lt;/P&gt;&lt;P&gt; ::x = Column(dt,"LOT");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;all failed. Any clues?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 31 Oct 2012 08:04:14 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2012-10-31T08:04:14Z</dc:date>
    <item>
      <title>how to assign a column to a list?</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-assign-a-column-to-a-list/m-p/5877#M5876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In JSL, there is a column diag function in which a column in a table can be assigned to a list by using ColList function. When the script is run, user needs to click on a button to make the assignment happens. It requires interactive user input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Col_dlg = ColumnDialog(&lt;/P&gt;&lt;P&gt;&amp;nbsp; Title("Variable Assignment"),&lt;/P&gt;&lt;P&gt;&amp;nbsp; ::x = ColList("Run ID", MinCol(1), MaxCol(1), Columns(:LOT)),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; .....&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to write a script such that a column can be assigned to a list without user clicking on the button on the dialog window (no dialog window will be shown when it runs)?&lt;/P&gt;&lt;P&gt;I tried:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ::x = ColList("Run ID (Required)", MinCol(1), MaxCol(1), Columns(:LOT));&lt;/P&gt;&lt;P&gt; ::x = :LOT &amp;lt;&amp;lt; Get Values;&lt;/P&gt;&lt;P&gt; ::x = Column(dt,"LOT");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;all failed. Any clues?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2012 08:04:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-assign-a-column-to-a-list/m-p/5877#M5876</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-10-31T08:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: how to assign a column to a list?</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-assign-a-column-to-a-list/m-p/5878#M5877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your second to last try should have worked, but perhaps the table containing the LOT column wasn't the current table.&amp;nbsp; The following syntax all works:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;dt &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: #0000dd;"&gt;Open&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10.0pt; font-family: 'Courier New';"&gt;(&lt;/STRONG&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: purple;"&gt;"$SAMPLE_DATA/Big Class.jmp"&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;x1 &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;name &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; get values&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;x2 &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: #0000dd;"&gt;column&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10.0pt; font-family: 'Courier New';"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;dt&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: purple;"&gt;"name"&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10.0pt; font-family: 'Courier New';"&gt;)&lt;/STRONG&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; get values&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Make sure the variable pointing to your data table is set.&amp;nbsp; For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: 0.0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;dt &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: #0000dd;"&gt;data table&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10.0pt; font-family: 'Courier New';"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: purple;"&gt;"MyLots"&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10.0pt; font-family: 'Courier New';"&gt;)&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: green;"&gt;// Table containing LOT column&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;::&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;x &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: #0000dd;"&gt;Column&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10.0pt; font-family: 'Courier New';"&gt;(&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;dt&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: purple;"&gt;"LOT"&lt;/SPAN&gt;&lt;STRONG style="color: black; font-size: 10.0pt; font-family: 'Courier New';"&gt;)&lt;/STRONG&gt; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; Get Values&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: navy;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2012 12:31:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-assign-a-column-to-a-list/m-p/5878#M5877</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2012-10-31T12:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: how to assign a column to a list?</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-assign-a-column-to-a-list/m-p/5879#M5878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, by using&lt;/P&gt;&lt;P&gt;::x2 = Column(dt, "LOT") &amp;lt;&amp;lt; Get Values;&lt;/P&gt;&lt;P&gt;will give me a list with all values under the Column LOT, but this ::x2 will not "act" exactly like the ::x assigned by using the ColList function from the Column Diag. For example, the following command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Column(dt, Eval(x)) &amp;lt;&amp;lt; Set Property("Row Order Levels", (1));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with the ::x assigned by using the ColList function, but will get error when I call&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Column(dt, Eval(x2)) &amp;lt;&amp;lt; Set Property("Row Order Levels", (1));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG style="font-size: 14pt; font-family: Courier New;"&gt;&lt;STRONG style="font-size: 14pt; font-family: Courier New;"&gt;The error msg is:&amp;nbsp; &lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;"could not find column in access or evaluation of 'Column' , Column( dt, Eval( x ) )"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the ::x assigned by ColList function, Eval(x) will give me "LOT";&lt;/P&gt;&lt;P&gt;For the ::x2 assigned in this way, Eval(x) will give me a list with all the values under Column LOT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I like to do is: to find a way to assign column to a list, EXACTLY act like the ColList function, but without user interface with the diaglog window or user interactive respond. If anyone can provide me the codes for the ColList function, it would be great!&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 14pt; font-family: Courier New;"&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2012 16:35:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-assign-a-column-to-a-list/m-p/5879#M5878</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-10-31T16:35:57Z</dc:date>
    </item>
    <item>
      <title>Re: how to assign a column to a list?</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-assign-a-column-to-a-list/m-p/5880#M5879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin: 0px;"&gt;&lt;SPAN style="color: #000000;"&gt;I don't see any specific reason to mimic the ColList output here, but you can create a list with a column like this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; color: #801392;"&gt;&lt;SPAN style="color: #000000;"&gt;dt &lt;/SPAN&gt;&lt;SPAN style="color: #160091;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #2800e1;"&gt;Open&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;"$SAMPLE_DATA/Big Class.jmp"&lt;SPAN style="color: #000000;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #160091;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;col&lt;SPAN style="color: #160091;"&gt;=&lt;/SPAN&gt; &lt;STRONG&gt;{&lt;/STRONG&gt;&lt;SPAN style="color: #2800e1;"&gt;column&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;dt&lt;SPAN style="color: #160091;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #801392;"&gt;"Name"&lt;/SPAN&gt;&lt;STRONG&gt;)}&lt;/STRONG&gt;&lt;SPAN style="color: #160091;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;SPAN style="color: #2800e1;"&gt;column&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;dt&lt;SPAN style="color: #160091;"&gt;,&lt;/SPAN&gt;col&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #160091;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt; Set Property&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color: #801392;"&gt;"Row Order Levels"&lt;/SPAN&gt;&lt;SPAN style="color: #160091;"&gt;,&lt;/SPAN&gt; &lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color: #509092;"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;))&lt;/STRONG&gt;&lt;SPAN style="color: #160091;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px;"&gt;&lt;SPAN style="color: #000000;"&gt;But for your example a normal column variable is more straight forward:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; color: #801392;"&gt;&lt;SPAN style="color: #000000;"&gt;dt &lt;/SPAN&gt;&lt;SPAN style="color: #160091;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #2800e1;"&gt;Open&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;"$SAMPLE_DATA/Big Class.jmp"&lt;SPAN style="color: #000000;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #160091;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;col&lt;SPAN style="color: #160091;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #2800e1;"&gt;column&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;dt&lt;SPAN style="color: #160091;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #801392;"&gt;"Name"&lt;/SPAN&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #160091;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;col&lt;SPAN style="color: #160091;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt; Set Property&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color: #801392;"&gt;"Row Order Levels"&lt;/SPAN&gt;&lt;SPAN style="color: #160091;"&gt;,&lt;/SPAN&gt; &lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color: #509092;"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;))&lt;/STRONG&gt;&lt;SPAN style="color: #160091;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px;"&gt;&lt;SPAN style="color: #000000;"&gt;Still another way based on a list of columns:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; color: #801392;"&gt;&lt;SPAN style="color: #000000;"&gt;dt &lt;/SPAN&gt;&lt;SPAN style="color: #160091;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #2800e1;"&gt;Open&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;/SPAN&gt;"$SAMPLE_DATA/Big Class.jmp"&lt;SPAN style="color: #000000;"&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #160091;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;SPAN style="color: #160091;"&gt;::&lt;/SPAN&gt;x &lt;SPAN style="color: #160091;"&gt;=&lt;/SPAN&gt; &lt;STRONG&gt;(&lt;/STRONG&gt;dt &lt;SPAN style="color: #160091;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt; get column names&lt;STRONG&gt;())[&lt;/STRONG&gt;&lt;SPAN style="color: #509092;"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;]&lt;/STRONG&gt;&lt;SPAN style="color: #160091;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;SPAN style="color: #160091;"&gt;::&lt;/SPAN&gt;x &lt;SPAN style="color: #160091;"&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt; Set Property&lt;STRONG&gt;(&lt;/STRONG&gt; &lt;SPAN style="color: #801392;"&gt;"Row Order Levels"&lt;/SPAN&gt;&lt;SPAN style="color: #160091;"&gt;,&lt;/SPAN&gt; &lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color: #509092;"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;)&lt;/STRONG&gt; &lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN style="color: #160091;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2012 17:23:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-assign-a-column-to-a-list/m-p/5880#M5879</guid>
      <dc:creator>ms</dc:creator>
      <dc:date>2012-10-31T17:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: how to assign a column to a list?</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-assign-a-column-to-a-list/m-p/5881#M5880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, my fault. My explanation was not clear. What I like to do is to use robust global var assignments to some columns to replace the Column Diag function so that no user interactive respond will be required. Here is the situation:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my main routine, there is a Column Diag in which some columns are assigned to some global variables, which will be called in many existing functions in libaries. There are some commands used in those lib functions:&lt;/P&gt;&lt;P&gt;N_x = NItems(x);&lt;/P&gt;&lt;P&gt;Column(dt, Eval(x2)) &amp;lt;&amp;lt; Set Property("Row Order Levels", (1));&lt;/P&gt;&lt;P&gt;Variability Chart(...)&lt;/P&gt;&lt;P&gt;Bivariate(..)&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No change in those lib functions is allowed. Currently, the global variables assigned by using the Column Diag function work well without any issue with the existing lib functions. But all the tries suggested above may work for some commands, but get errors others.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that my explanation this time is clear :-). Or probably add more confusion :-(.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2012 18:28:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-assign-a-column-to-a-list/m-p/5881#M5880</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-10-31T18:28:23Z</dc:date>
    </item>
  </channel>
</rss>

