<?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 Saving report created with several tables in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Saving-report-created-with-several-tables/m-p/34985#M20658</link>
    <description>&lt;P&gt;Hello everybody,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have created a report which contains different graphs and elements built from several data tables.&lt;/P&gt;&lt;P&gt;I would like to find a convenient way to save it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a little example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;new window ("My report",
	hlist box(
		data table("Candy Bars")&amp;lt;&amp;lt; Distribution( Continuous Distribution( Column( :Calories ) ) );
		data table("Big Class")&amp;lt;&amp;lt;Bivariate( Y( :height ), X( :weight ) );
	)	
);&lt;/PRE&gt;&lt;P&gt;When I save it as a JMP report and then reopen it, only the dependency with the table Candy Bars remains and I only have one graph in my report.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So far the only solution I have found, is to save it using html interactive format. This enables me to keep a trace of all the information of my report.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Nevertheless I would like to know if it is possible to save it as a JMP report in order to have the possibility to keep on working with it in JMP.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance for your help!&lt;/P&gt;</description>
    <pubDate>Thu, 26 Jan 2017 10:28:33 GMT</pubDate>
    <dc:creator>anne_sa</dc:creator>
    <dc:date>2017-01-26T10:28:33Z</dc:date>
    <item>
      <title>Saving report created with several tables</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-report-created-with-several-tables/m-p/34985#M20658</link>
      <description>&lt;P&gt;Hello everybody,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have created a report which contains different graphs and elements built from several data tables.&lt;/P&gt;&lt;P&gt;I would like to find a convenient way to save it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a little example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;new window ("My report",
	hlist box(
		data table("Candy Bars")&amp;lt;&amp;lt; Distribution( Continuous Distribution( Column( :Calories ) ) );
		data table("Big Class")&amp;lt;&amp;lt;Bivariate( Y( :height ), X( :weight ) );
	)	
);&lt;/PRE&gt;&lt;P&gt;When I save it as a JMP report and then reopen it, only the dependency with the table Candy Bars remains and I only have one graph in my report.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So far the only solution I have found, is to save it using html interactive format. This enables me to keep a trace of all the information of my report.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Nevertheless I would like to know if it is possible to save it as a JMP report in order to have the possibility to keep on working with it in JMP.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance for your help!&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2017 10:28:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-report-created-with-several-tables/m-p/34985#M20658</guid>
      <dc:creator>anne_sa</dc:creator>
      <dc:date>2017-01-26T10:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: Saving report created with several tables</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-report-created-with-several-tables/m-p/34987#M20660</link>
      <description>&lt;P&gt;You could opt to save your output to a JMP Journal.&amp;nbsp; It will save the results just as you see them.&amp;nbsp; So rather than just creating a New Window you would make the the New Window a journal&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;new window ("My report",
	hlist box(
		data table("Candy Bars")&amp;lt;&amp;lt; Distribution( Continuous Distribution( Column( :Calories ) ) );
		data table("Big Class")&amp;lt;&amp;lt;Bivariate( Y( :height ), X( :weight ) );
	)	
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Addionally, since a JMP Report is actually just a .jsl file with the extension, you can create your own .jrp file within JMP and save it, with the required data tables and additional JSL required to create the report you want&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );
dt2 = Open( "$SAMPLE_DATA/Candy Bars.jmp" );

// Create the jsl to save as a JMP Report
bcscript = Char( dt &amp;lt;&amp;lt; get script ) || ";";
bcscript = bcscript || Char( dt2 &amp;lt;&amp;lt; get script ) || ";";
bcscript = bcscript ||
"\[new window ("My report",
	hlist box(
		data table("Candy Bars")&amp;lt;&amp;lt; Distribution( Continuous Distribution( Column( :Calories ) ) );
		data table("Big Class")&amp;lt;&amp;lt;Bivariate( Y( :height ), X( :weight ) );
	)	
);]\";
Close( dt, nosave );
Close( dt2, nosave );
Save Text File( "$TEMP/DeleteMe.jrp", bcscript );
Wait( 0 );
Open( "$TEMP/DeleteMe.jrp" );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 26 Jan 2017 12:44:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-report-created-with-several-tables/m-p/34987#M20660</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-01-26T12:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: Saving report created with several tables</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-report-created-with-several-tables/m-p/34989#M20662</link>
      <description>&lt;P&gt;Thank you very much Jim, the second option is exactly what I was looking for!&lt;/P&gt;&lt;P&gt;Your help is really appreciated!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2017 14:19:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-report-created-with-several-tables/m-p/34989#M20662</guid>
      <dc:creator>anne_sa</dc:creator>
      <dc:date>2017-01-26T14:19:53Z</dc:date>
    </item>
  </channel>
</rss>

