<?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: Combining multiple table scripts in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Combining-multiple-table-scripts/m-p/392437#M64264</link>
    <description>&lt;P&gt;I would replace the variable &lt;STRONG&gt;dt_all&lt;/STRONG&gt; with the function &lt;STRONG&gt;Current Data Table()&lt;/STRONG&gt; and see if it works.&lt;/P&gt;</description>
    <pubDate>Thu, 10 Jun 2021 16:26:40 GMT</pubDate>
    <dc:creator>Mark_Bailey</dc:creator>
    <dc:date>2021-06-10T16:26:40Z</dc:date>
    <item>
      <title>Combining multiple table scripts</title>
      <link>https://community.jmp.com/t5/Discussions/Combining-multiple-table-scripts/m-p/392369#M64259</link>
      <description>&lt;P&gt;Folks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had generated multiple plots and saved to the source table. I wanted to create another table script which combined two of the shown scripts ("Cumulative Resistivity" and "Cumulative Permeability"). This third saved script is "RP." The final objective is to consolidate the plots in a clean window which I then copy and paste into Powerpoint.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The snippet below seems to almost do what I want. With the table still open, I'm able to get a plot that combines the plots from the first two scripts. However, after closing the table and re-opening, and running "RP", I get the message shown below. Any hints on what needs to be done or is there a better way to handle this situation?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;nw = Eval Expr( New Window("BR",  
				Lineup Box(N Col(1), 
				Spacing(10), dt_all &amp;lt;&amp;lt; Run Script("Cumulative Resistivity"), 
							dt_all &amp;lt;&amp;lt; Run Script("Cumulative Permeability")
					)
				)
		
			);
	
	dt_all &amp;lt;&amp;lt; New Script("RP", nw) ;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&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="warning.JPG" style="width: 898px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/33455i0FAB5005076D2760/image-size/large?v=v2&amp;amp;px=999" role="button" title="warning.JPG" alt="warning.JPG" /&gt;&lt;/span&gt;&lt;/P&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="table prop list.JPG" style="width: 579px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/33450i8F603B8C3ACAB6EF/image-size/large?v=v2&amp;amp;px=999" role="button" title="table prop list.JPG" alt="table prop list.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:14:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Combining-multiple-table-scripts/m-p/392369#M64259</guid>
      <dc:creator>NRW</dc:creator>
      <dc:date>2023-06-11T11:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: Combining multiple table scripts</title>
      <link>https://community.jmp.com/t5/Discussions/Combining-multiple-table-scripts/m-p/392437#M64264</link>
      <description>&lt;P&gt;I would replace the variable &lt;STRONG&gt;dt_all&lt;/STRONG&gt; with the function &lt;STRONG&gt;Current Data Table()&lt;/STRONG&gt; and see if it works.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jun 2021 16:26:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Combining-multiple-table-scripts/m-p/392437#M64264</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2021-06-10T16:26:40Z</dc:date>
    </item>
    <item>
      <title>Re: Combining multiple table scripts</title>
      <link>https://community.jmp.com/t5/Discussions/Combining-multiple-table-scripts/m-p/392455#M64267</link>
      <description>&lt;P&gt;Mark,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Perfect!!&lt;/P&gt;&lt;P&gt;That did the trick. I was hoping I was getting close to the solution. Thank you for your time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As an aside, I'm assuming&amp;nbsp; the way I have the code snippet set up, with some adjustments I could include pulling in images to accompany the graphs in the same window (2 images and 2 graphs)? Then I could copy and paste into Powerpoint. Or would a Journal be a better way to combine the multiple formats?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;nw = Eval Expr( New Window("BR",  
				Lineup Box(N Col(1), 
				Spacing(10), Current Data Table() &amp;lt;&amp;lt; Run Script("Cumulative Resistivity"), 
							Current Data Table() &amp;lt;&amp;lt; Run Script("Cumulative Permeability")
					)
				)
		
			);
	
	Current Data Table() &amp;lt;&amp;lt; New Script("RP", nw) ;
	&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&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="sol_a.JPG" style="width: 644px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/33461i5ECE4B0759A2CF5D/image-size/large?v=v2&amp;amp;px=999" role="button" title="sol_a.JPG" alt="sol_a.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jun 2021 19:08:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Combining-multiple-table-scripts/m-p/392455#M64267</guid>
      <dc:creator>NRW</dc:creator>
      <dc:date>2021-06-10T19:08:47Z</dc:date>
    </item>
    <item>
      <title>Re: Combining multiple table scripts</title>
      <link>https://community.jmp.com/t5/Discussions/Combining-multiple-table-scripts/m-p/392484#M64269</link>
      <description>&lt;P&gt;See the Help &amp;gt; Scripting Index for information about adding images to your display tree.&lt;/P&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="image.PNG" style="width: 877px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/33463i1DD646D8040B9545/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.PNG" alt="image.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jun 2021 20:51:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Combining-multiple-table-scripts/m-p/392484#M64269</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2021-06-10T20:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: Combining multiple table scripts</title>
      <link>https://community.jmp.com/t5/Discussions/Combining-multiple-table-scripts/m-p/393621#M64398</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Mark,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Many thanks for all your help!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Neil&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jun 2021 12:52:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Combining-multiple-table-scripts/m-p/393621#M64398</guid>
      <dc:creator>NRW</dc:creator>
      <dc:date>2021-06-16T12:52:10Z</dc:date>
    </item>
  </channel>
</rss>

