<?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: Saving Variability Charts as PDF only one chart being saved in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Saving-Variability-Charts-as-PDF-only-one-chart-being-saved/m-p/55244#M31235</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/7934"&gt;@Herrera5238&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;So is the vc[1] telling it to use the first on the list?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes. You use [] to &lt;A href="https://www.jmp.com/support/help/14/subscripts.shtml#250464" target="_self"&gt;subscript&lt;/A&gt; into a list.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;FYI, I tried following your links for "list" and "platforms" but it said page not found.&lt;BR /&gt;
&lt;P&gt;The other three links worked fine.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yikes! Sorry about that. I've corrected them in the post above.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 18 Apr 2018 23:05:43 GMT</pubDate>
    <dc:creator>Jeff_Perkinson</dc:creator>
    <dc:date>2018-04-18T23:05:43Z</dc:date>
    <item>
      <title>Saving Variability Charts as PDF only one chart being saved</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-Variability-Charts-as-PDF-only-one-chart-being-saved/m-p/55236#M31231</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I've made a script to make variability charts and I'm trying to save as a PDF. Looking through other discussions I found how to save as PDF. The issues is that I've 7 charts but only the last one is actually being saved in the PDF. Is there something that I'm missing that could be causing this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;vc = Data Table( "Data Accept" ) &amp;lt;&amp;lt; Variability Chart(
	Y( Column( "Bin_VALUE" ) ),
	X( :Status_Type ),
	By( :Product, :Bin_Size ),
	Show Box Plots( 1 ),
	Std Dev Chart( 0 ),
	Points Jittered( 1 )
);

TestReport= vc;

TestReport &amp;lt;&amp;lt; Set page setup( margins( 0.5, 0.5, 0.5, 0.5 ), scale( 0.80 ), header( 0), footer( 0), portrait( 1 ));

TestReport &amp;lt;&amp;lt; SavePDF("$root\" || IDNumber || ".pdf");&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 21:57:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-Variability-Charts-as-PDF-only-one-chart-being-saved/m-p/55236#M31231</guid>
      <dc:creator>Herrera5238</dc:creator>
      <dc:date>2018-04-18T21:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Variability Charts as PDF only one chart being saved</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-Variability-Charts-as-PDF-only-one-chart-being-saved/m-p/55239#M31232</link>
      <description>&lt;P&gt;When you use a By() option in a platform the result is a &lt;A href="https://www.jmp.com/support/help/14/lists.shtml#23298971" target="_self"&gt;list&lt;/A&gt; of &lt;A href="https://www.jmp.com/support/help/14/scripting-platforms.shtml" target="_self"&gt;platforms&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, you'll need to get to the parent &lt;A href="https://www.jmp.com/support/help/14/display-trees.shtml#" target="_self"&gt;display box&lt;/A&gt; of one of &lt;A href="https://www.jmp.com/support/help/14/display-functions.shtml#2605168" target="_self"&gt;reports&lt;/A&gt; of one of the platforms using the &lt;A href="https://www.jmp.com/support/help/14/all-display-boxes.shtml#2143465" target="_self"&gt;&amp;lt;&amp;lt;Parent&lt;/A&gt; message.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt=open("$SAMPLE_DATA\Variability Data\3 Factors Nested &amp;amp; Crossed.jmp");
vc = dt&amp;lt;&amp;lt;Variability Chart(
	Y( :Y ),
	X( :Part, :Instrument ),
	Analysis Type( "Choose best analysis (EMS REML Bayesian)" ),
	Std Dev Chart( 0 ),
	By( :Operator )
);

show(vc);

TestReport= report(vc[1])&amp;lt;&amp;lt;Parent;

TestReport &amp;lt;&amp;lt; Set page setup( margins( 0.5, 0.5, 0.5, 0.5 ), scale( 0.80 ), header( 0), footer( 0), portrait( 1 ));

TestReport &amp;lt;&amp;lt; SavePDF("c:\temp\Test.pdf");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Be sure to look at the log window after running the example above. The show(vc) will demonstrate that vc has a list of Variability platforms.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Apr 2018 19:26:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-Variability-Charts-as-PDF-only-one-chart-being-saved/m-p/55239#M31232</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2018-04-19T19:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Variability Charts as PDF only one chart being saved</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-Variability-Charts-as-PDF-only-one-chart-being-saved/m-p/55243#M31234</link>
      <description>&lt;P&gt;Thanks Jeff. I applied your code and it worked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So is the vc[1] telling it to use the first on the list?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FYI, I tried following your links for "list" and "platforms" but it said page not found.&lt;/P&gt;&lt;P&gt;The other three links worked fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for our help!&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 22:33:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-Variability-Charts-as-PDF-only-one-chart-being-saved/m-p/55243#M31234</guid>
      <dc:creator>Herrera5238</dc:creator>
      <dc:date>2018-04-18T22:33:35Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Variability Charts as PDF only one chart being saved</title>
      <link>https://community.jmp.com/t5/Discussions/Saving-Variability-Charts-as-PDF-only-one-chart-being-saved/m-p/55244#M31235</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/7934"&gt;@Herrera5238&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;So is the vc[1] telling it to use the first on the list?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes. You use [] to &lt;A href="https://www.jmp.com/support/help/14/subscripts.shtml#250464" target="_self"&gt;subscript&lt;/A&gt; into a list.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;FYI, I tried following your links for "list" and "platforms" but it said page not found.&lt;BR /&gt;
&lt;P&gt;The other three links worked fine.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yikes! Sorry about that. I've corrected them in the post above.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 23:05:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Saving-Variability-Charts-as-PDF-only-one-chart-being-saved/m-p/55244#M31235</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2018-04-18T23:05:43Z</dc:date>
    </item>
  </channel>
</rss>

