<?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 Vector Columns? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Vector-Columns/m-p/936443#M109182</link>
    <description>&lt;P&gt;How Can I create a pre-filled Col List Box with all the Vector Columns of the current data table?&lt;/P&gt;
&lt;P&gt;Like &lt;CODE class="language-jsl"&gt;&amp;lt;&amp;lt; Modeling Type({"Continuous"})&lt;/CODE&gt;, but for modeling type &lt;FONT face="courier new,courier"&gt;Vector&lt;/FONT&gt;.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" );
New Window( "Vector columns", 
Col List Box(All, width( 250 ),&amp;lt;&amp;lt; Modeling Type({"Continuous"}) ),
Col List Box(All, width( 250 ),&amp;lt;&amp;lt; Modeling Type({"Vector"} ) ));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;Seems to be an issue of&amp;nbsp;&lt;FONT face="courier new,courier"&gt;All &lt;/FONT&gt;- which doesn't pick &lt;FONT face="courier new,courier"&gt;All&amp;nbsp;&lt;/FONT&gt; columns .&lt;FONT face="courier new,courier"&gt;&lt;BR /&gt;&lt;/FONT&gt;&amp;nbsp;is there a command &lt;FONT face="courier new,courier"&gt;All_even_the_Expressions &lt;/FONT&gt;?&lt;/P&gt;</description>
    <pubDate>Fri, 20 Mar 2026 18:14:14 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2026-03-20T18:14:14Z</dc:date>
    <item>
      <title>Vector Columns?</title>
      <link>https://community.jmp.com/t5/Discussions/Vector-Columns/m-p/936443#M109182</link>
      <description>&lt;P&gt;How Can I create a pre-filled Col List Box with all the Vector Columns of the current data table?&lt;/P&gt;
&lt;P&gt;Like &lt;CODE class="language-jsl"&gt;&amp;lt;&amp;lt; Modeling Type({"Continuous"})&lt;/CODE&gt;, but for modeling type &lt;FONT face="courier new,courier"&gt;Vector&lt;/FONT&gt;.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" );
New Window( "Vector columns", 
Col List Box(All, width( 250 ),&amp;lt;&amp;lt; Modeling Type({"Continuous"}) ),
Col List Box(All, width( 250 ),&amp;lt;&amp;lt; Modeling Type({"Vector"} ) ));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;Seems to be an issue of&amp;nbsp;&lt;FONT face="courier new,courier"&gt;All &lt;/FONT&gt;- which doesn't pick &lt;FONT face="courier new,courier"&gt;All&amp;nbsp;&lt;/FONT&gt; columns .&lt;FONT face="courier new,courier"&gt;&lt;BR /&gt;&lt;/FONT&gt;&amp;nbsp;is there a command &lt;FONT face="courier new,courier"&gt;All_even_the_Expressions &lt;/FONT&gt;?&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2026 18:14:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Vector-Columns/m-p/936443#M109182</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-03-20T18:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: Vector Columns?</title>
      <link>https://community.jmp.com/t5/Discussions/Vector-Columns/m-p/936453#M109183</link>
      <description>&lt;P&gt;Loop over the list of columns, get vector modeling types and use "" with col list box&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class Families.jmp");

nw = New Window("Vector columns",
	clb = Col List Box(dt, "", width(250), &amp;lt;&amp;lt;Modeling Type({"Vector"}))
);

vcols = Filter Each({colname}, dt &amp;lt;&amp;lt; Get Column Names("String"), Column(dt, colname) &amp;lt;&amp;lt; get modeling type == "Vector");
clb &amp;lt;&amp;lt; Set Items(vcols);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 20 Mar 2026 18:32:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Vector-Columns/m-p/936453#M109183</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2026-03-20T18:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: Vector Columns?</title>
      <link>https://community.jmp.com/t5/Discussions/Vector-Columns/m-p/936455#M109184</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;, many thanks&amp;nbsp;for the nice workaround :)&lt;/img&gt;&lt;BR /&gt;&lt;BR /&gt;@JMP: why ?!&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2026 18:35:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Vector-Columns/m-p/936455#M109184</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-03-20T18:35:37Z</dc:date>
    </item>
  </channel>
</rss>

