<?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 get multiple open data table file names for JSL? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-get-multiple-open-data-table-file-names-for-JSL/m-p/81706#M36978</link>
    <description>&lt;P&gt;Hi:&lt;BR /&gt;Assuming that two datatable files have been opened but no table Numbers have been entered in advance, how do&amp;nbsp;can get multiple datatable file names that have been opened?How to jump from the current file to another file?Thank you!&lt;/P&gt;</description>
    <pubDate>Sat, 27 Oct 2018 10:56:28 GMT</pubDate>
    <dc:creator>lwx228</dc:creator>
    <dc:date>2018-10-27T10:56:28Z</dc:date>
    <item>
      <title>How to get multiple open data table file names for JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-multiple-open-data-table-file-names-for-JSL/m-p/81706#M36978</link>
      <description>&lt;P&gt;Hi:&lt;BR /&gt;Assuming that two datatable files have been opened but no table Numbers have been entered in advance, how do&amp;nbsp;can get multiple datatable file names that have been opened?How to jump from the current file to another file?Thank you!&lt;/P&gt;</description>
      <pubDate>Sat, 27 Oct 2018 10:56:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-multiple-open-data-table-file-names-for-JSL/m-p/81706#M36978</guid>
      <dc:creator>lwx228</dc:creator>
      <dc:date>2018-10-27T10:56:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to get multiple open data table file names for JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-multiple-open-data-table-file-names-for-JSL/m-p/81711#M36981</link>
      <description>&lt;P&gt;You can find out the number of open tables with the N Table() function, and then get each name by looping through the open tables and asking for each table's name&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
For( i = 1, i &amp;lt;= N Table(), i++,
	Show( Data Table( i ) &amp;lt;&amp;lt; get name )
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Below is one example of how I deal with the need to point directly at a data table, which allows one to switch between them.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

dtLIst = {};

For( i = 1, i &amp;lt;= N Table(), i++,
	dt = data table(i);
	insert into(dtList, dt );
);

eval(dtList[1]) &amp;lt;&amp;lt; new column("added column", set each value(5));

dtList[2] &amp;lt;&amp;lt; bivariate();&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Oct 2018 16:32:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-multiple-open-data-table-file-names-for-JSL/m-p/81711#M36981</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-10-27T16:32:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to get multiple open data table file names for JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-multiple-open-data-table-file-names-for-JSL/m-p/81714#M36982</link>
      <description>Thank Jim!&lt;BR /&gt;&lt;BR /&gt;VBA：ActiveWindow.ActivateNext</description>
      <pubDate>Sat, 27 Oct 2018 22:49:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-multiple-open-data-table-file-names-for-JSL/m-p/81714#M36982</guid>
      <dc:creator>lwx228</dc:creator>
      <dc:date>2018-10-27T22:49:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to get multiple open data table file names for JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-multiple-open-data-table-file-names-for-JSL/m-p/240935#M47591</link>
      <description>&lt;P&gt;This ability may be newer than this thread but since I was just searching out the syntax for this (and sometimes the community seems the easy place to search) I thought I'd note here that there &lt;EM&gt;is&lt;/EM&gt; a function GetDataTableList() to directly get a list of open table names.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2020 02:08:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-multiple-open-data-table-file-names-for-JSL/m-p/240935#M47591</guid>
      <dc:creator>hardner</dc:creator>
      <dc:date>2020-01-13T02:08:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to get multiple open data table file names for JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-multiple-open-data-table-file-names-for-JSL/m-p/241127#M47616</link>
      <description>&lt;P&gt;GetDataTableList() does not work if the table is already open.&lt;BR /&gt;So I'm going to use the Jim's method.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2020 14:44:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-multiple-open-data-table-file-names-for-JSL/m-p/241127#M47616</guid>
      <dc:creator>lwx228</dc:creator>
      <dc:date>2020-01-14T14:44:50Z</dc:date>
    </item>
  </channel>
</rss>

