<?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: Extract data table tile in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Extract-data-table-tile/m-p/528127#M75189</link>
    <description>&lt;P&gt;Since the data table references are stored in a list, you can send the &amp;lt;&amp;lt; Get Name message to the list and it will distribute the send to each item. The result is a new list of the names.&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 );
Open( "$SAMPLE_DATA/Big Class.jmp" );
Open( "$SAMPLE_DATA/Cars.jmp" );
table = Get Data Table List();
name = table &amp;lt;&amp;lt; Get Name;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Lists and matrices offer the opportunity to 'vectorize' operations by allowing functions and messages to work on the collection as a whole without the need for explicit iteration in JSL.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 29 Jul 2022 13:17:45 GMT</pubDate>
    <dc:creator>Mark_Bailey</dc:creator>
    <dc:date>2022-07-29T13:17:45Z</dc:date>
    <item>
      <title>Extract data table tile</title>
      <link>https://community.jmp.com/t5/Discussions/Extract-data-table-tile/m-p/527920#M75169</link>
      <description>&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to extract data table tile and store in the list. I tried get data table list function and was able to store the data table names but the sting contains Data table ("Title"), I only want to store title not the data table().&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 );
Open( "$SAMPLE_DATA/Big Class.jmp" );
Open( "$SAMPLE_DATA/Cars.jmp" );
list = Get Data Table List();
title = &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 09 Jun 2023 17:05:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Extract-data-table-tile/m-p/527920#M75169</guid>
      <dc:creator>Jackie_</dc:creator>
      <dc:date>2023-06-09T17:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: Extract data table tile</title>
      <link>https://community.jmp.com/t5/Discussions/Extract-data-table-tile/m-p/527927#M75170</link>
      <description>&lt;P&gt;This will get you what you want&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
Open( "$SAMPLE_DATA/Big Class.jmp" );
Open( "$SAMPLE_DATA/Cars.jmp" );
list = Get Data Table List();
For Each( {value, index}, list,
	list[index] = Word( 2, Char( value ), "\!"" )
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 29 Jul 2022 02:48:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Extract-data-table-tile/m-p/527927#M75170</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-07-29T02:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: Extract data table tile</title>
      <link>https://community.jmp.com/t5/Discussions/Extract-data-table-tile/m-p/527945#M75175</link>
      <description>&lt;P&gt;You can use &lt;A href="https://www.jmp.com/support/help/en/16.2/#page/jmp/data-tables-2.shtml?os=win&amp;amp;source=application#ww1919171" target="_blank" rel="noopener"&gt;&amp;lt;&amp;lt;Get Name()&lt;/A&gt; on the data table reference to get the table name. To get names of all datatables you can use&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
tablenames = Get Data Table List() &amp;lt;&amp;lt; Get Name();&lt;/CODE&gt;&lt;/PRE&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="jthi_0-1659071371384.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/44403iA80E67D76ACCB522/image-size/large?v=v2&amp;amp;px=999" role="button" title="jthi_0-1659071371384.png" alt="jthi_0-1659071371384.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2022 05:09:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Extract-data-table-tile/m-p/527945#M75175</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2022-07-29T05:09:49Z</dc:date>
    </item>
    <item>
      <title>Re: Extract data table tile</title>
      <link>https://community.jmp.com/t5/Discussions/Extract-data-table-tile/m-p/528127#M75189</link>
      <description>&lt;P&gt;Since the data table references are stored in a list, you can send the &amp;lt;&amp;lt; Get Name message to the list and it will distribute the send to each item. The result is a new list of the names.&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 );
Open( "$SAMPLE_DATA/Big Class.jmp" );
Open( "$SAMPLE_DATA/Cars.jmp" );
table = Get Data Table List();
name = table &amp;lt;&amp;lt; Get Name;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Lists and matrices offer the opportunity to 'vectorize' operations by allowing functions and messages to work on the collection as a whole without the need for explicit iteration in JSL.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2022 13:17:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Extract-data-table-tile/m-p/528127#M75189</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2022-07-29T13:17:45Z</dc:date>
    </item>
  </channel>
</rss>

