<?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: How do I make a list of strings containing the titles of opened data tables from a button using the open function? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-do-I-make-a-list-of-strings-containing-the-titles-of-opened/m-p/512579#M74013</link>
    <description>This looks good! I can work with this, thank you!</description>
    <pubDate>Wed, 22 Jun 2022 19:41:18 GMT</pubDate>
    <dc:creator>Andyon98</dc:creator>
    <dc:date>2022-06-22T19:41:18Z</dc:date>
    <item>
      <title>How do I make a list of strings containing the titles of opened data tables from a button using the open function?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-make-a-list-of-strings-containing-the-titles-of-opened/m-p/512514#M74007</link>
      <description>Exactly as the title suggests, im trying to make a list of strings containing the titles of the files I am using from using the open(); function.</description>
      <pubDate>Fri, 09 Jun 2023 17:02:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-make-a-list-of-strings-containing-the-titles-of-opened/m-p/512514#M74007</guid>
      <dc:creator>Andyon98</dc:creator>
      <dc:date>2023-06-09T17:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: How do I make a list of strings containing the titles of opened data tables from a button using the open function?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-make-a-list-of-strings-containing-the-titles-of-opened/m-p/512530#M74009</link>
      <description>&lt;P&gt;Depends on the application.&lt;/P&gt;
&lt;P&gt;You could initialize list and then add new table names to it with Insert Into() when needed (use &amp;lt;&amp;lt; get name to datatable reference if needed).&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt_name_list = {};
show(dt_name_list);
dt1 = Open("$SAMPLE_DATA/Big Class.jmp");
Insert Into(dt_name_list, dt1 &amp;lt;&amp;lt; get name);
show(dt_name_list);
dt2 = Open("$SAMPLE_DATA/Cars.jmp");
Insert Into(dt_name_list, dt1 &amp;lt;&amp;lt; get name);
show(dt_name_list);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or you could get all open table names and then remove unnecessary ones from that list&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");
dt_name_list = Get Data Table List() &amp;lt;&amp;lt; get name;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 22 Jun 2022 19:12:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-make-a-list-of-strings-containing-the-titles-of-opened/m-p/512530#M74009</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2022-06-22T19:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: How do I make a list of strings containing the titles of opened data tables from a button using the open function?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-make-a-list-of-strings-containing-the-titles-of-opened/m-p/512579#M74013</link>
      <description>This looks good! I can work with this, thank you!</description>
      <pubDate>Wed, 22 Jun 2022 19:41:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-make-a-list-of-strings-containing-the-titles-of-opened/m-p/512579#M74013</guid>
      <dc:creator>Andyon98</dc:creator>
      <dc:date>2022-06-22T19:41:18Z</dc:date>
    </item>
  </channel>
</rss>

