<?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 convert column names to a list of strings in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39402#M23043</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to convert column names to strings but I do not know how.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Decathlon.jmp" );

col_names = dt &amp;lt;&amp;lt; Get Column Names();

Show(col_names);

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;this leads to&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;col_names = {Name, Country, Score, Name("100m"), Long Jump, Shot Put, High Jump, Name("400m"), Name("100m hurdles"), Discus, Pole Vault, Javelin, Name("1500m")};&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I would like to have something like this instead:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;col_names = {"Name", "Country", "Score", "100m", "Long Jump", "Shot Put", "High Jump", "400m", "100m hurdles", "Discus", "Pole Vault", "Javelin", "1500m"};&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Any idea?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 19 May 2017 15:37:33 GMT</pubDate>
    <dc:creator>newbie_alex</dc:creator>
    <dc:date>2017-05-19T15:37:33Z</dc:date>
    <item>
      <title>how to convert column names to a list of strings</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39402#M23043</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to convert column names to strings but I do not know how.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Decathlon.jmp" );

col_names = dt &amp;lt;&amp;lt; Get Column Names();

Show(col_names);

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;this leads to&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;col_names = {Name, Country, Score, Name("100m"), Long Jump, Shot Put, High Jump, Name("400m"), Name("100m hurdles"), Discus, Pole Vault, Javelin, Name("1500m")};&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I would like to have something like this instead:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;col_names = {"Name", "Country", "Score", "100m", "Long Jump", "Shot Put", "High Jump", "400m", "100m hurdles", "Discus", "Pole Vault", "Javelin", "1500m"};&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Any idea?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 May 2017 15:37:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39402#M23043</guid>
      <dc:creator>newbie_alex</dc:creator>
      <dc:date>2017-05-19T15:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert column names to a list of strings</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39405#M23044</link>
      <description>&lt;P&gt;Try '&amp;lt;&amp;lt;&amp;nbsp;getColumnNames&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"String"&lt;/SPAN&gt;&lt;SPAN&gt;)'.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Look out for the editor tooltips that pop up for coloured keywords, or use 'Help &amp;gt; Scripting Index' to dig deeper.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 19 May 2017 15:45:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39405#M23044</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2017-05-19T15:45:03Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert column names to a list of strings</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39410#M23046</link>
      <description>&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 19 May 2017 15:59:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39410#M23046</guid>
      <dc:creator>newbie_alex</dc:creator>
      <dc:date>2017-05-19T15:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert column names to a list of strings</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39421#M23052</link>
      <description>&lt;P&gt;Is there something similar for Get Variables() ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
gb = Graph Builder( Variables( X( :height ), Y( :weight ) ), Elements( Points( X, Y ), Smoother( X, Y ) ) );
gbb = Report( gb )[Graph Builder Box( 1 )];
gbb &amp;lt;&amp;lt; Get Variables();&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 19 May 2017 18:15:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39421#M23052</guid>
      <dc:creator>newbie_alex</dc:creator>
      <dc:date>2017-05-19T18:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert column names to a list of strings</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39456#M23067</link>
      <description>Try adding String as the argument of the Get Column Names function.&lt;BR /&gt;For example:&lt;BR /&gt;&lt;BR /&gt;col_str = dt &amp;lt;&amp;lt; Get Column Names(String);&lt;BR /&gt;It results in&lt;BR /&gt;{"Name", "Country", "Score", "100m", "Long Jump", "Shot Put", "High Jump", "400m",&lt;BR /&gt;"100m hurdles", "Discus", "Pole Vault", "Javelin", "1500m"}</description>
      <pubDate>Sat, 20 May 2017 21:22:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39456#M23067</guid>
      <dc:creator>mela_ssa</dc:creator>
      <dc:date>2017-05-20T21:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert column names to a list of strings</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39457#M23068</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try adding String in the Get Column Names function. For example:&lt;/P&gt;&lt;P&gt;col_str = dt &amp;lt;&amp;lt; Get Column Names(String);&lt;BR /&gt;It results in&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;{"Name", "Country", "Score", "100m", "Long Jump", "Shot Put", "High Jump", "400m",&lt;BR /&gt;"100m hurdles", "Discus", "Pole Vault", "Javelin", "1500m"}&lt;/P&gt;</description>
      <pubDate>Sat, 20 May 2017 21:24:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39457#M23068</guid>
      <dc:creator>mela_ssa</dc:creator>
      <dc:date>2017-05-20T21:24:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert column names to a list of strings</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39458#M23069</link>
      <description>&lt;P&gt;If you are looking to get what variables were used Post Hoc to the platform being run, you can always extract the script used for produce the platform, and to examine it to get the variables&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
obj = Graph Builder(
	Variables(
		X( :Sex ),
		Y( :Height ),
		Group X( :Age )
	),
	Elements( Box Plot( X, Y ) )
);
t = obj &amp;lt;&amp;lt; Get Script;
Show( t );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 20 May 2017 22:00:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39458#M23069</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-05-20T22:00:56Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert column names to a list of strings</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39459#M23070</link>
      <description>&lt;P&gt;Thank you for the feedback.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The idea is to use JSL to do something with the list of graph variables (e.g. check what color was assigned by graph builder for a given variable (which do not know how to do yet)) and use the result to do something else (e.g. make sure that the same color is used in another graph).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Parsing the whole graph builder script returned by Get Script to determine the list of variable names seems to be a fairly complicated way of doing this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 20 May 2017 22:50:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39459#M23070</guid>
      <dc:creator>newbie_alex</dc:creator>
      <dc:date>2017-05-20T22:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert column names to a list of strings</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39460#M23071</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
gb = Graph Builder( Variables( X( :height ), Y( :weight ) ), Elements( Points( X, Y ), Smoother( X, Y ) ) );
// you could extract the x and y labels if you think
// these might have remained as the variable names
yvar=report(gb)[TextEditBox(3)]&amp;lt;&amp;lt;get text;
xvar=report(gb)[TextEditBox(2)]&amp;lt;&amp;lt;get text;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 21 May 2017 01:12:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39460#M23071</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-05-21T01:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert column names to a list of strings</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39470#M23079</link>
      <description>&lt;P&gt;Following Jim's thinking, maybe something like?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
// Make a Graph Builder report
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
gb = Graph Builder( Variables( X( :height ), Y( :weight ) ), Elements( Points( X, Y ), Smoother( X, Y ) ) );
// Post-hoc interrogation of the report . . .
// (1) Get the script that launched the platform (or do: ' sc = gb &amp;lt;&amp;lt; getScript')
sc = (Report(gb) &amp;lt;&amp;lt; getScriptableObject) &amp;lt;&amp;lt; getScript;
// (2) Pick apart the script expression and get what's needed
varList = {};
for(i=1, i&amp;lt;=Narg(Arg(sc,1)), i++,
	InsertInto(varList, Arg(Arg(Arg(sc,1), i),1));
);
Print(varList);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The code is a little terse, but you can use 'Help &amp;gt; Scripting Guide' to see what at 'Arg()' and 'NArg()' do.&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 08:39:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39470#M23079</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2017-05-22T08:39:23Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert column names to a list of strings</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39471#M23080</link>
      <description>&lt;P&gt;Thank you for your answer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately your code returns&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;{Empty()}&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 22 May 2017 08:35:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39471#M23080</guid>
      <dc:creator>newbie_alex</dc:creator>
      <dc:date>2017-05-22T08:35:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert column names to a list of strings</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39472#M23081</link>
      <description>&lt;P&gt;I had some issues with the Community software, and you may have got an incomplete version. At any rate, the code there now gives me (JMP Pro 13.1 on a Mac):&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;{:height, :weight}&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 08:47:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39472#M23081</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2017-05-22T08:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert column names to a list of strings</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39473#M23082</link>
      <description>Thanks you for the quick feedback.&lt;BR /&gt;&lt;BR /&gt;I use JMP Pro 12.2.0. That might be the reason why our results differ</description>
      <pubDate>Mon, 22 May 2017 08:46:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39473#M23082</guid>
      <dc:creator>newbie_alex</dc:creator>
      <dc:date>2017-05-22T08:46:08Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert column names to a list of strings</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39474#M23083</link>
      <description>&lt;P&gt;It's possible the expression for the Graph Builder saved script has changed, and if so, the way the script is parsed would need to be changed accordingly. I don't have that version installed so can't easily check.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But you should be able to use the general appoach.&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 08:53:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39474#M23083</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2017-05-22T08:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert column names to a list of strings</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39548#M23127</link>
      <description>col_str = dt &amp;lt;&amp;lt; Get Column Names( "String" ); works in JMP 13.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;For JMP 12, use col_str = dt &amp;lt;&amp;lt; Get Column Names( "String" );&lt;BR /&gt;&lt;BR /&gt;As Ian suggested.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 23 May 2017 14:17:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39548#M23127</guid>
      <dc:creator>mela_ssa</dc:creator>
      <dc:date>2017-05-23T14:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert column names to a list of strings</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39550#M23128</link>
      <description>&lt;P&gt;Since your stated purpose is to have the same colors from Graph Builder apply to other graphs, could you use the Column Properties - Value Colors to accomplish what you want?&lt;/P&gt;</description>
      <pubDate>Tue, 23 May 2017 18:10:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/39550#M23128</guid>
      <dc:creator>dale_lehman</dc:creator>
      <dc:date>2017-05-23T18:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert column names to a list of strings</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/50308#M28620</link>
      <description>&lt;P&gt;I have the opposite problem. I need to convert a string list to a column name list.&lt;BR /&gt;I have a list of column names as strings, {"col1", "col2", "col3"}&lt;BR /&gt;I want to group those columns but that function needs the list to look like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt &amp;lt;&amp;lt; Group Columns("ColGroup", {:col1, :col2, :col3});
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I've tried many permutations of eval, evapexpr and column but have not found the correct one.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jan 2018 21:15:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/50308#M28620</guid>
      <dc:creator>pcarroll1</dc:creator>
      <dc:date>2018-01-26T21:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert column names to a list of strings</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/50311#M28622</link>
      <description>&lt;P&gt;This works:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = current data table();
col_list = {"Column 1", "Column 2", "Column 3"};

dt &amp;lt;&amp;lt; Group Columns("ColGroup", col_list);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 26 Jan 2018 20:23:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/50311#M28622</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2018-01-26T20:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert column names to a list of strings</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/50323#M28628</link>
      <description>&lt;P&gt;This worked but I needed to first make a group name variable.&lt;/P&gt;&lt;P&gt;j=1;&lt;/P&gt;&lt;P&gt;GN = &lt;SPAN class="token string"&gt;"ColGroup"||j;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;dt &lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt; Group Columns(GN&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt; col_list&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token punctuation"&gt;worked.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token punctuation"&gt;But &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token punctuation"&gt;dt &lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;&amp;lt;&lt;/SPAN&gt; Group Columns(&lt;SPAN class="token string"&gt;"ColGroup"||j&lt;/SPAN&gt;, col_list);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token punctuation"&gt;did not.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token punctuation"&gt;It turned out this was the problem all along.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token punctuation"&gt;The error message made the problem look like it was with the column list.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jan 2018 22:09:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/50323#M28628</guid>
      <dc:creator>pcarroll1</dc:creator>
      <dc:date>2018-01-26T22:09:14Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert column names to a list of strings</title>
      <link>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/261318#M51147</link>
      <description>&lt;P&gt;suppose I have a single column name as a variable, how would I make that column name into a string? E.g. a user dialog selects a column, I want that column name as a string. Thanks.&lt;/P&gt;</description>
      <pubDate>Sat, 25 Apr 2020 23:01:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/how-to-convert-column-names-to-a-list-of-strings/m-p/261318#M51147</guid>
      <dc:creator>bayesfactor</dc:creator>
      <dc:date>2020-04-25T23:01:48Z</dc:date>
    </item>
  </channel>
</rss>

