<?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 can I export some tables to excel with tirggers commands? in FlexSim Forum</title>
    <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-export-some-tables-to-excel-with-tirggers-commands/m-p/13531643#M40388</link>
    <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;Hi &lt;A rel="user" href="https://answers.flexsim.com/users/201/matt.l.html" nodeid="201"&gt;@Matt Long&lt;/A&gt;, I'm using the second solution of yours i.e., excelemultitableexport() in custom code in process flow.&lt;/P&gt;
 &lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Image.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1519644i70FB51D3622CC4A5/image-size/large?v=v2&amp;amp;px=999" role="button" title="Image.png" alt="Image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
 &lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="1686509246422.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1495634iFDF9E12C0F4191C4/image-size/large?v=v2&amp;amp;px=999" role="button" title="1686509246422.png" alt="1686509246422.png" /&gt;&lt;/span&gt;&lt;/P&gt;
 &lt;P&gt;I'm getting excel file with global table data as per your solution if I'm running the model in normal way.&lt;/P&gt;
 &lt;P&gt;&lt;STRONG&gt;But if I'm running the model the model in experimenter mode the model is not fetching any data of Table to dedicated/allocated excel file.&lt;/STRONG&gt;&lt;/P&gt;
 &lt;P&gt;Please let me know what to do when I'm running experimenter.&lt;/P&gt;
&lt;/DIV&gt;</description>
    <pubDate>Sun, 11 Jun 2023 19:03:35 GMT</pubDate>
    <dc:creator>KarthikSN</dc:creator>
    <dc:date>2023-06-11T19:03:35Z</dc:date>
    <item>
      <title>How can I export some tables to excel with tirggers commands?</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-export-some-tables-to-excel-with-tirggers-commands/m-p/13531641#M40386</link>
      <description />
      <pubDate>Tue, 04 Jul 2017 03:53:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-export-some-tables-to-excel-with-tirggers-commands/m-p/13531641#M40386</guid>
      <dc:creator>gabriel_illescas_cavazos</dc:creator>
      <dc:date>2017-07-04T03:53:17Z</dc:date>
    </item>
    <item>
      <title>Re: How can I export some tables to excel with tirggers commands?</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-export-some-tables-to-excel-with-tirggers-commands/m-p/13531642#M40387</link>
      <description>&lt;P&gt;There are three ways you could do this:&lt;/P&gt;&lt;P&gt;1) There's an exporttable() command that allows you to export a node table (a Global Table or Label Table) to a CSV file. That CSV file can then be opened by Excel.&lt;/P&gt;&lt;P&gt;2) The second option is to use the excelmultitableexport() command. This does the same thing as pressing the Export Tables button on the Export tab of the Excel Interface. All tables that are checked will be exported when using this command. You can write some code to turn the tables on or off if you just need to export a subset of tables. Here's an example:&lt;/P&gt;&lt;PRE&gt;treenode excelAuto = model().find("Tools/ExcelAuto");
treenode exportTable = getvarnode(excelAuto, "exporttable");
exportTable.subnodes[1].find("Checked").value = 0; //Uncheck the first table
exportTable.subnodes[2].find("Checked").value = 1; //Check the second table
excelmultitableexport(); //Export the tables&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="7348-exporttables.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1495633i9AFEDE997A69117F/image-size/large?v=v2&amp;amp;px=999" role="button" title="7348-exporttables.png" alt="7348-exporttables.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;3) The final option is to write a completely custom exporter. You can view a sample of this by going to the Custom tab of the Excel Interface and then under the Custom Export section, selecting the pick option Example Custom Export. Then view the code.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2017 14:33:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-export-some-tables-to-excel-with-tirggers-commands/m-p/13531642#M40387</guid>
      <dc:creator>matt_long</dc:creator>
      <dc:date>2017-07-04T14:33:05Z</dc:date>
    </item>
    <item>
      <title>Re: How can I export some tables to excel with tirggers commands?</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-export-some-tables-to-excel-with-tirggers-commands/m-p/13531643#M40388</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;Hi &lt;A rel="user" href="https://answers.flexsim.com/users/201/matt.l.html" nodeid="201"&gt;@Matt Long&lt;/A&gt;, I'm using the second solution of yours i.e., excelemultitableexport() in custom code in process flow.&lt;/P&gt;
 &lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Image.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1519644i70FB51D3622CC4A5/image-size/large?v=v2&amp;amp;px=999" role="button" title="Image.png" alt="Image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
 &lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="1686509246422.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1495634iFDF9E12C0F4191C4/image-size/large?v=v2&amp;amp;px=999" role="button" title="1686509246422.png" alt="1686509246422.png" /&gt;&lt;/span&gt;&lt;/P&gt;
 &lt;P&gt;I'm getting excel file with global table data as per your solution if I'm running the model in normal way.&lt;/P&gt;
 &lt;P&gt;&lt;STRONG&gt;But if I'm running the model the model in experimenter mode the model is not fetching any data of Table to dedicated/allocated excel file.&lt;/STRONG&gt;&lt;/P&gt;
 &lt;P&gt;Please let me know what to do when I'm running experimenter.&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Sun, 11 Jun 2023 19:03:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-export-some-tables-to-excel-with-tirggers-commands/m-p/13531643#M40388</guid>
      <dc:creator>KarthikSN</dc:creator>
      <dc:date>2023-06-11T19:03:35Z</dc:date>
    </item>
    <item>
      <title>Re: How can I export some tables to excel with tirggers commands?</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-export-some-tables-to-excel-with-tirggers-commands/m-p/13531644#M40389</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 Hi 
 &lt;A rel="user" href="https://answers.flexsim.com/users/42963/karthiksn.html" nodeid="42963"&gt;@karthik&lt;/A&gt;! This question would be better if asked as a new question with a link to the old post as per 
 &lt;A rel="noopener noreferrer" target="_blank"&gt;our community guidelines&lt;/A&gt; instead of posting on a 5 year old post. Thanks!
&lt;/DIV&gt;</description>
      <pubDate>Mon, 12 Jun 2023 13:45:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-can-i-export-some-tables-to-excel-with-tirggers-commands/m-p/13531644#M40389</guid>
      <dc:creator>julie_weller</dc:creator>
      <dc:date>2023-06-12T13:45:48Z</dc:date>
    </item>
  </channel>
</rss>

