<?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: Two graphs to single PowerPoint slide in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41279#M24086</link>
    <description>&lt;P&gt;Here is an illustration of the concept that I am talking about. &amp;nbsp;I have intentionally avoided using "New Window"s to illustrate how this all can be put together without popping up windows all over the place. &amp;nbsp;If you want the display windows, you can just substitute them into the code&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\big class.jmp" );

// Create the desired graphs
biv1 = bivariate( invisible, x( :age ), y( :height ) );
biv2 = bivariate( invisible, x( :age ), y( :weight ) );

// Create a holding object to place them into
myhlb = H List Box();
// Copy the objects into the holding object
myhlb &amp;lt;&amp;lt; append( Report( biv1 ) );
myhlb &amp;lt;&amp;lt; append( Report( biv1 ) );

// Create a second holding object to copy the picture
// of the complete first holding object
myhlb2 = H List Box();

// Copy the picture
myhlb2 &amp;lt;&amp;lt; append( myhlb &amp;lt;&amp;lt; get picture );

// Save the second holding object to the ppt
myhlb2 &amp;lt;&amp;lt; save presentation( "C:\mypicture.pptx" );&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 27 Jun 2017 20:02:54 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2017-06-27T20:02:54Z</dc:date>
    <item>
      <title>Two graphs to single PowerPoint slide</title>
      <link>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41210#M24034</link>
      <description>&lt;P&gt;Does anyone know how to send two graphs (3-D Surface Plots) to the same PowerPoint Slide?&amp;nbsp; I know how to get one there, but I need two, side-by-side.&amp;nbsp; I even know the size and position I want them on the slide, but I can't, for the life of me, figure out how to get them both there at one time.&amp;nbsp; Using Journal removes the text boxes and legend that must be included.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2017 20:10:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41210#M24034</guid>
      <dc:creator>WendyLou315</dc:creator>
      <dc:date>2017-06-26T20:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: Two graphs to single PowerPoint slide</title>
      <link>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41211#M24035</link>
      <description>interactively or by using JSL(script)</description>
      <pubDate>Mon, 26 Jun 2017 20:24:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41211#M24035</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-06-26T20:24:40Z</dc:date>
    </item>
    <item>
      <title>Re: Two graphs to single PowerPoint slide</title>
      <link>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41212#M24036</link>
      <description>&lt;P&gt;Sorry...neglected that detail...using jsl.&amp;nbsp; I'm developing a tool that produces multiple charts for production decision making and need two views of the same 3D surface plot on the same .pptx slide.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2017 20:26:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41212#M24036</guid>
      <dc:creator>WendyLou315</dc:creator>
      <dc:date>2017-06-26T20:26:59Z</dc:date>
    </item>
    <item>
      <title>Re: Two graphs to single PowerPoint slide</title>
      <link>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41213#M24037</link>
      <description>&lt;P&gt;If you place the 2 outputs into an H List Box(), you can then capture them into another object with a &amp;lt;&amp;lt; get picture. &amp;nbsp;The new object can be then saved to ppt&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2017 20:32:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41213#M24037</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-06-26T20:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: Two graphs to single PowerPoint slide</title>
      <link>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41277#M24085</link>
      <description>&lt;P&gt;Thanks again, Jim!&amp;nbsp; I now have a new window with the two graphs, and it looks perfect.&amp;nbsp; However, my problems continue.&amp;nbsp; This script produces multiple graphs that are inserted into the PowerPoint so I need to script what page each goes on *and* save&amp;nbsp;each graph&amp;nbsp;in a&amp;nbsp;.png file.&amp;nbsp; When I try to send this object (the two surface plots) to the .ppt, nothing happens.&amp;nbsp; I've tried to send it to a report and I get errors every time.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm a novice still trying to wrap my head around jsl structure.&amp;nbsp; With this problem I feel as I'm failing miserably.&amp;nbsp; I can't send you the full code, but up to this point is successful.&amp;nbsp; I've tried with and without the Repor() line.&amp;nbsp; What am I doing wrong?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;//Save Slot Width Production 3-D Surface Plots to picture
Report(TippedSP)[PictureBox(1)] &amp;lt;&amp;lt; save picture((outputloc || char(dienum) || "_ProductionTippedSW.png"), png);
Report(TopViewSP)[PictureBox(1)] &amp;lt;&amp;lt; save picture((outputloc || char(dienum) || "_ProductionTopSW.png"), png);

LeftSP = TippedSP &amp;lt;&amp;lt; Get Picture;
RightSP = TopViewSP &amp;lt;&amp;lt; Get Picture;

SlideSurfacePlot = new window(" Test ", h list box( LeftSP, RightSP ) ) &amp;lt;&amp;lt; Get Picture;

Report(SlideSurfacePlot)[PictureBox(1)] &amp;lt;&amp;lt; Save Picture((outputloc || char(dienum) || "_Production3DSurface.png"), png);

SlideSurfacePlot &amp;lt;&amp;lt; Save Presentation(outputloc || "_" || char(dienum) || "_04-27-2017_" || DieType || "_" || CCondition ||"_Summary_Production.pptx", Insert(5), PNG); &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 27 Jun 2017 19:36:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41277#M24085</guid>
      <dc:creator>WendyLou315</dc:creator>
      <dc:date>2017-06-27T19:36:05Z</dc:date>
    </item>
    <item>
      <title>Re: Two graphs to single PowerPoint slide</title>
      <link>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41279#M24086</link>
      <description>&lt;P&gt;Here is an illustration of the concept that I am talking about. &amp;nbsp;I have intentionally avoided using "New Window"s to illustrate how this all can be put together without popping up windows all over the place. &amp;nbsp;If you want the display windows, you can just substitute them into the code&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\big class.jmp" );

// Create the desired graphs
biv1 = bivariate( invisible, x( :age ), y( :height ) );
biv2 = bivariate( invisible, x( :age ), y( :weight ) );

// Create a holding object to place them into
myhlb = H List Box();
// Copy the objects into the holding object
myhlb &amp;lt;&amp;lt; append( Report( biv1 ) );
myhlb &amp;lt;&amp;lt; append( Report( biv1 ) );

// Create a second holding object to copy the picture
// of the complete first holding object
myhlb2 = H List Box();

// Copy the picture
myhlb2 &amp;lt;&amp;lt; append( myhlb &amp;lt;&amp;lt; get picture );

// Save the second holding object to the ppt
myhlb2 &amp;lt;&amp;lt; save presentation( "C:\mypicture.pptx" );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 27 Jun 2017 20:02:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41279#M24086</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-06-27T20:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: Two graphs to single PowerPoint slide</title>
      <link>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41280#M24087</link>
      <description>&lt;P&gt;Oh, that's AWESOME!&amp;nbsp; Works great.&amp;nbsp; Now if you know how to get it to size to the slide in ppt, I'd be done!&amp;nbsp;&amp;nbsp;:)&lt;/img&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you SO much!&amp;nbsp; One day I'll get the nuances of jsl better.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2017 20:23:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41280#M24087</guid>
      <dc:creator>WendyLou315</dc:creator>
      <dc:date>2017-06-27T20:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: Two graphs to single PowerPoint slide</title>
      <link>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41281#M24088</link>
      <description>&lt;P&gt;try this on for size&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\big class.jmp" );

// Create the desired graphs
biv1 = bivariate( invisible, x( :age ), y( :height ) );
biv2 = bivariate( invisible, x( :age ), y( :weight ) );
report(biv1)[FrameBox(1)] &amp;lt;&amp;lt; frame size(600,600);
report(biv2)[FrameBox(1)] &amp;lt;&amp;lt; frame size(600,600);
// Create a holding object to place them into
myhlb = H List Box();
// Copy the objects into the holding object
myhlb &amp;lt;&amp;lt; append( Report( biv1 ) );
myhlb &amp;lt;&amp;lt; append( Report( biv1 ) );

// Create a second holding object to copy the picture
// of the complete first holding object
myhlb2 = H List Box();

// Copy the picture
myhlb2 &amp;lt;&amp;lt; append( myhlb &amp;lt;&amp;lt; get picture );

// Save the second holding object to the ppt
myhlb2 &amp;lt;&amp;lt; save presentation( "C:\mypicture.pptx" );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 27 Jun 2017 20:43:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41281#M24088</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-06-27T20:43:11Z</dc:date>
    </item>
    <item>
      <title>Re: Two graphs to single PowerPoint slide</title>
      <link>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41282#M24089</link>
      <description>&lt;P&gt;Thanks again, Jim!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In theory that works.&amp;nbsp; For a general plot, works great.&amp;nbsp; Would the fact that I'm producing 3D Surface Plots invalidate "Frame Size"?&amp;nbsp; I'm getting the following error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cannot subscript Display Box in access or evaluation of 'Subscript' , Report( TippedSP )[/*###*/FrameBox( 1 )]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You've been a GREAT help today, I can't thank you enough!&lt;/P&gt;&lt;P&gt;- Wendy&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2017 21:04:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41282#M24089</guid>
      <dc:creator>WendyLou315</dc:creator>
      <dc:date>2017-06-27T21:04:00Z</dc:date>
    </item>
    <item>
      <title>Re: Two graphs to single PowerPoint slide</title>
      <link>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41283#M24090</link>
      <description>&lt;P&gt;What you are missing, is that FrameBox(1) isn't always the object that needs to be changed. &amp;nbsp;You need to read the section in the Scripting Guide on Display Trees. &amp;nbsp;If you are using Surface Plots, then the size of the object needs to deal with SceneBox(1), and it isn't a "Size" mesage, but rather a "Height" and "Width" measurement.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\big class.jmp" );

sur=Surface Plot(
	Columns( :age, :height, :weight ),
	Datapoints Choice( "Points" ),
	Surface Color Theme( "Green to Black to Red" ),
	Surface Color Theme2( "Green to White to Red" ),
	Surface Color Theme3( "White to Black" ),
	Surface Color Theme4( "Blue to Gray to Red" ),
	Response Column Color Theme( "Blue to Green to Red" ),
	Response Column Color Theme2( "Spectral" ),
	Response Column Color Theme3( "Jet" ),
	Response Column Color Theme4( "White to Blue" ),
	Response( :weight ),
	Surface Color Method( "Solid", "Solid", "Solid", "Solid" ),
	SetVariableAxis( :age, Axis Data( {} ) ),
	SetVariableAxis( :height, Axis Data( {} ) ),
	SetZAxis( weight, Current Value( 120 ) ),
	SetXVariable( :age ),
	SetYVariable( :height ),
	Frame3D( Set Rotation( -54, 0, 38 ) )
);
report(sur)[scenebox(1)]&amp;lt;&amp;lt;height(800)&amp;lt;&amp;lt;Width(800);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 27 Jun 2017 21:20:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41283#M24090</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-06-27T21:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: Two graphs to single PowerPoint slide</title>
      <link>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41313#M24111</link>
      <description>&lt;P&gt;Thanks again, Jim!&amp;nbsp; I discovered that it was as simple as the sizing (more ratio than size) in the plot script that needed adjusting and now it works great.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will most assuredly take your advice and read the Scripting Guide once the complerte tool I'm developing is prototype ready, which I believe it now is thanks to you.&amp;nbsp; I tried to show the display tree for the surface plots, but I couldn't figure out how to do that.&amp;nbsp; It appears to be a different method from displaying for other charts.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2017 12:58:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41313#M24111</guid>
      <dc:creator>WendyLou315</dc:creator>
      <dc:date>2017-06-28T12:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: Two graphs to single PowerPoint slide</title>
      <link>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41329#M24119</link>
      <description>&lt;P&gt;To show the Display Tree just right click on any outline box's gray trangle and select "Edit==&amp;gt;Show Tree Structure"&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2017 17:42:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41329#M24119</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-06-28T17:42:22Z</dc:date>
    </item>
    <item>
      <title>Re: Two graphs to single PowerPoint slide</title>
      <link>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41345#M24134</link>
      <description>&lt;P&gt;Well, look at that!&amp;nbsp; I clicked everywhere BUT there.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now I discovered that I'm not getting the legend.&amp;nbsp; The tree structure isn't helping me with that either.&amp;nbsp; Sssigh!&amp;nbsp; I can't seem to win with this option.&amp;nbsp; A single Surface Plot is a piece of cake in comparison.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again, Jim!&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2017 13:37:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/41345#M24134</guid>
      <dc:creator>WendyLou315</dc:creator>
      <dc:date>2017-06-29T13:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: Two graphs to single PowerPoint slide</title>
      <link>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/79485#M36725</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am having the same issue with getting graphs into presentation. this is very helpful. now what if you have more plots and need to put them on another slide?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Oct 2018 02:34:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/79485#M36725</guid>
      <dc:creator>cheeny</dc:creator>
      <dc:date>2018-10-18T02:34:20Z</dc:date>
    </item>
    <item>
      <title>Re: Two graphs to single PowerPoint slide</title>
      <link>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/79486#M36726</link>
      <description>&lt;P&gt;Repeat the same process as before, with the 2 new objects you want to put together, but then when you go to Save the Presentation, specify to Append to the existing pptx&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;myhlb2 &amp;lt;&amp;lt; save presentation( "C:\mypicture.pptx", Replace( Append) );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;See documentation and an example in the Scripting Index&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp; Help==&amp;gt;Scripting Index.........search on "Save Presentation"&lt;/P&gt;</description>
      <pubDate>Thu, 18 Oct 2018 02:43:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/79486#M36726</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-10-18T02:43:41Z</dc:date>
    </item>
    <item>
      <title>Re: Two graphs to single PowerPoint slide</title>
      <link>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/79487#M36727</link>
      <description>oh thanks! by the way its just replace or append.&lt;BR /&gt;myhlb2 &amp;lt;&amp;lt; save presentation( "C:\mypicture.pptx", append );</description>
      <pubDate>Thu, 18 Oct 2018 03:16:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/79487#M36727</guid>
      <dc:creator>cheeny</dc:creator>
      <dc:date>2018-10-18T03:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: Two graphs to single PowerPoint slide</title>
      <link>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/79488#M36728</link>
      <description>&lt;P&gt;Oops....you are correct&lt;/P&gt;</description>
      <pubDate>Thu, 18 Oct 2018 03:19:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/79488#M36728</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-10-18T03:19:18Z</dc:date>
    </item>
    <item>
      <title>Re: Two graphs to single PowerPoint slide</title>
      <link>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/82747#M37276</link>
      <description>&lt;P&gt;Hi thanks for the help last time.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am still working on this..&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just curious if we can make a more flexible script where i have specific dimensions for my HLBox and VLBox but use a for loop to append each&amp;nbsp;object of a report with n items. also n is not fixed thats why we need a loop.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;biv = Bivariate(); //with n objects&lt;/P&gt;&lt;P&gt;nbiv = N items(biv);&lt;/P&gt;&lt;P&gt;myhlb = V List box();&lt;/P&gt;&lt;P&gt;myvlb = V List box();&lt;/P&gt;&lt;P&gt;for(i=1, i&amp;lt;=nbiv, i++,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; myhlb &amp;lt;&amp;lt; append( report( biv[i] ) ); //but only 3 objects appended at a time&lt;BR /&gt;&amp;nbsp; &amp;nbsp; myvlb &amp;lt;&amp;lt; append( myhlb &amp;lt;&amp;lt; get picture ); //and this one, only 2 objects appended at a time&lt;BR /&gt;);&lt;/P&gt;&lt;P&gt;goal is to have&amp;nbsp;3x2 objects per slide&lt;/P&gt;&lt;P&gt;is this possible?&lt;/P&gt;</description>
      <pubDate>Wed, 07 Nov 2018 08:53:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/82747#M37276</guid>
      <dc:creator>cheeny</dc:creator>
      <dc:date>2018-11-07T08:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: Two graphs to single PowerPoint slide</title>
      <link>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/610205#M81113</link>
      <description>&lt;P&gt;Alternative approach (if you need to rearrange the plots anyway in poerpoint)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;With a shortcut on the Graph Builder toolbar you can "throw" graphs and reports to Powerpoint&lt;/P&gt;&lt;P&gt;... and Powerpoint will insert the graph/report in the current slide of the current presentation.&lt;BR /&gt;&lt;BR /&gt;New version should be available within the next few days:&lt;BR /&gt;&lt;LI-MESSAGE title="Graph Builder Toolbar" uid="565466" url="https://community.jmp.com/t5/JMP-Add-Ins/Graph-Builder-Toolbar/m-p/565466#U565466" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-tkb-thread lia-fa-icon lia-fa-tkb lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&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="hogi_0-1678381695508.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/50897i8653766149C39B35/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1678381695508.png" alt="hogi_0-1678381695508.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 18:49:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Two-graphs-to-single-PowerPoint-slide/m-p/610205#M81113</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-06-27T18:49:39Z</dc:date>
    </item>
  </channel>
</rss>

