<?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 to save each graph from graph builder into an image file with the title from the List array in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-save-each-graph-from-graph-builder-into-an-image-file/m-p/82303#M37112</link>
    <description>&lt;P&gt;Does&amp;nbsp;"gb &amp;lt;&amp;lt; Make Into Data Table()" help? It creates a new data table with a column of images.&lt;/P&gt;</description>
    <pubDate>Thu, 01 Nov 2018 19:24:18 GMT</pubDate>
    <dc:creator>XanGregg</dc:creator>
    <dc:date>2018-11-01T19:24:18Z</dc:date>
    <item>
      <title>How to save each graph from graph builder into an image file with the title from the List array</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-save-each-graph-from-graph-builder-into-an-image-file/m-p/82276#M37105</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have trying to find a away of saving my results into a pptx. template and realized that I should first save each result into a file to then compile into a template report.&lt;/P&gt;&lt;P&gt;According the following post:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.jmp.com/t5/Discussions/the-graph-size-exported-to-pptx-Save-Presentation/m-p/72135#M35554" target="_self"&gt;https://community.jmp.com/t5/Discussions/the-graph-size-exported-to-pptx-Save-Presentation/m-p/72135#M35554&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I have not been able to find a away of naming my files according to the List that is created under the loop. I am using the following Big Class example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt2 = Open( "$SAMPLE_DATA\Big Class.JMP" );

win = New Window( "Graphs", lub = Lineup Box( N Col( 2 ) ) );

ages = (Associative Array( Column( dt2, "age" ) ) &amp;lt;&amp;lt; Get keys);

For( i = 1, i &amp;lt;= N Items( ages ), i++,
	dt2 &amp;lt;&amp;lt; select where( :age == ages[i] );
	dt = dt2 &amp;lt;&amp;lt; subset( invisible, selected rows( 1 ), selected columns( 0 ) );
	lub &amp;lt;&amp;lt; append(
		gb = dt &amp;lt;&amp;lt; Graph Builder(
			Variables( X( :weight ), Y( :height ), Wrap( :age, N View Levels( 1 ) ) ),
			Elements( Points( X, Y, Legend( 7 ) ), Smoother( X, Y, Legend( 9 ) ) ),
			Local Data Filter(
				Close Outline( 1 ),
				Add Filter(
					columns( :age ),
					Where( :age == ages[i] ),
					Display( :age, Size( 224, 126 ), List Display )
				)
			)
		);
		Report( gb )[AxisBox( 2 )] &amp;lt;&amp;lt; Min( 0 );
		
		gb&amp;lt;&amp;lt; save picture(Eval Insert("C:\....\BigClass^i^.png"));););&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Is there anyone that knows how to do this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried using the below instead but it does not work.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;gb &amp;lt;&amp;lt; Save Picture( "C:\BigClass_" || Ages[i] ||".jpg", JPEG );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Do I need to create a different String/List for this? Any guidance is much appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 01 Nov 2018 17:39:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-save-each-graph-from-graph-builder-into-an-image-file/m-p/82276#M37105</guid>
      <dc:creator>ivomdb</dc:creator>
      <dc:date>2018-11-01T17:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to save each graph from graph builder into an image file with the title from the List array</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-save-each-graph-from-graph-builder-into-an-image-file/m-p/82303#M37112</link>
      <description>&lt;P&gt;Does&amp;nbsp;"gb &amp;lt;&amp;lt; Make Into Data Table()" help? It creates a new data table with a column of images.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Nov 2018 19:24:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-save-each-graph-from-graph-builder-into-an-image-file/m-p/82303#M37112</guid>
      <dc:creator>XanGregg</dc:creator>
      <dc:date>2018-11-01T19:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to save each graph from graph builder into an image file with the title from the List array</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-save-each-graph-from-graph-builder-into-an-image-file/m-p/82347#M37125</link>
      <description>&lt;P&gt;You need a Char() function around Ages[i]. The values of your associative array Ages are numeric.&amp;nbsp; Note the script below is writing to the c:\temp\ directory. Also the commented statement will work as well.&amp;nbsp; &amp;nbsp;You should close your Append() statement before the save&amp;nbsp; statement.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt2 = Open( "$SAMPLE_DATA\Big Class.JMP" );

win = New Window( "Graphs", lub = Lineup Box( N Col( 2 ) ) );

ages = (Associative Array( Column( dt2, "age" ) ) &amp;lt;&amp;lt; Get keys);

For( i = 1, i &amp;lt;= N Items( ages ), i++,
	dt2 &amp;lt;&amp;lt; select where( :age == ages[i] );
	dt = dt2 &amp;lt;&amp;lt; subset( invisible, selected rows( 1 ), selected columns( 0 ) );
	lub &amp;lt;&amp;lt; append(
		gb = dt &amp;lt;&amp;lt; Graph Builder(
			Variables( X( :weight ), Y( :height ), Wrap( :age, N View Levels( 1 ) ) ),
			Elements( Points( X, Y, Legend( 7 ) ), Smoother( X, Y, Legend( 9 ) ) ),
			Local Data Filter(
				Close Outline( 1 ),
				Add Filter(
					columns( :age ),
					Where( :age == ages[i] ),
					Display( :age, Size( 224, 126 ), List Display )
				)
			)
		);
	);
	Report( gb )[AxisBox( 2 )] &amp;lt;&amp;lt; Min( 0 );
		
	//gb&amp;lt;&amp;lt; save picture(Eval Insert("C:\temp\BigClass^i^.png"));&lt;BR /&gt;

gb &amp;lt;&amp;lt; Save Picture( "C:\temp\BigClass_" || char(Ages[i]) ||".jpg", JPEG );
);&lt;/CODE&gt;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Nov 2018 06:06:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-save-each-graph-from-graph-builder-into-an-image-file/m-p/82347#M37125</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2018-11-02T06:06:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to save each graph from graph builder into an image file with the title from the List array</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-save-each-graph-from-graph-builder-into-an-image-file/m-p/82350#M37128</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/70"&gt;@gzmorgan0&lt;/a&gt;&lt;/P&gt;&lt;P&gt;Thanks for the tip. It works under this example for Big Class. However, it does not work on my scrypt.&lt;/P&gt;&lt;P&gt;I have tried both commands and only the first works for my script but only replaces ^i^ as a number and not Name/Character which is what I have as a List. The second command works fine for the Big Class example so may be Char() is not applicable for Names?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;gb&amp;lt;&amp;lt; save picture(Eval Insert("C:\temp\BigClass^i^.png"));

//and also

gb &amp;lt;&amp;lt; Save Picture( "C:\temp\BigClass_" || char(Ages[i]) ||".jpg", JPEG );
);

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I have also tried using the Char() function under the first line of command but it does not work as the "||" does not seem to work for the Eval Insert().&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;gb&amp;lt;&amp;lt; save picture(Eval Insert("&lt;/CODE&gt;&lt;CODE class=" language-jsl"&gt;C:\temp\&lt;/CODE&gt;&lt;CODE class=" language-jsl"&gt;^i^.png") ||Char(Ages[i])||".jpg",JPEG););&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;DO you know how to get around this ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Nov 2018 10:53:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-save-each-graph-from-graph-builder-into-an-image-file/m-p/82350#M37128</guid>
      <dc:creator>ivomdb</dc:creator>
      <dc:date>2018-11-02T10:53:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to save each graph from graph builder into an image file with the title from the List array</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-save-each-graph-from-graph-builder-into-an-image-file/m-p/82352#M37130</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/494"&gt;@XanGregg&lt;/a&gt;&lt;/P&gt;&lt;P&gt;How would you then refereence each table ? How would you then save each table into a picture with the name of the List?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you show how you would do this under this Big Class&amp;nbsp; example?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Nov 2018 12:02:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-save-each-graph-from-graph-builder-into-an-image-file/m-p/82352#M37130</guid>
      <dc:creator>ivomdb</dc:creator>
      <dc:date>2018-11-02T12:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to save each graph from graph builder into an image file with the title from the List array</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-save-each-graph-from-graph-builder-into-an-image-file/m-p/82365#M37132</link>
      <description>&lt;P&gt;I was thinking of something like the following, but now I realize it's probably not what you want since it doesn't capture the axes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt2 = Open( "$SAMPLE_DATA\Big Class.JMP" );

gb = dt2 &amp;lt;&amp;lt; Graph Builder(
	Size(800, 600),
		Variables( X( :weight ), Y( :height ), Wrap( :age ) ),
		Elements( Points( X, Y ), Smoother( X, Y ) )
	);
Report( gb )[AxisBox( 2 )] &amp;lt;&amp;lt; Min( 0 );

dt = gb &amp;lt;&amp;lt; make into data table();
for each row(dt, 
	img = :graph;
	img &amp;lt;&amp;lt; save image(Eval Insert("$DOCUMENTS/BigClass^char(:age)^.png"));
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 02 Nov 2018 13:27:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-save-each-graph-from-graph-builder-into-an-image-file/m-p/82365#M37132</guid>
      <dc:creator>XanGregg</dc:creator>
      <dc:date>2018-11-02T13:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to save each graph from graph builder into an image file with the title from the List array</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-save-each-graph-from-graph-builder-into-an-image-file/m-p/82366#M37133</link>
      <description>It definitely works but is not what I want. I would like to have the image as when saving picture &amp;lt;&amp;lt;</description>
      <pubDate>Fri, 02 Nov 2018 13:47:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-save-each-graph-from-graph-builder-into-an-image-file/m-p/82366#M37133</guid>
      <dc:creator>ivomdb</dc:creator>
      <dc:date>2018-11-02T13:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to save each graph from graph builder into an image file with the title from the List array</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-save-each-graph-from-graph-builder-into-an-image-file/m-p/82439#M37147</link>
      <description>&lt;P&gt;Your last post had&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;gb&amp;lt;&amp;lt; save picture(Eval Insert("C:\temp\^i^.png") ||Char(Ages[i])||".jpg",JPEG););&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Please look at your syntax.&lt;/STRONG&gt;&lt;/FONT&gt; For i=1 where Ages[i] = 12, this would produce the string&amp;nbsp;"C:\temp\1.png12.jpg" .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;gb&amp;lt;&amp;lt; save picture("C:\temp\Age_" ||Char(Ages[i])||".jpg",JPEG););&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;F&lt;/SPAN&gt;&lt;SPAN&gt;or i=1 where Ages[i] = 12, this would produce the string "C:\temp\Age_12.jpg"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Your original example used unique values of the column :age as your list.&amp;nbsp; If the save is not working, and it is not due to poor syntax maybe the values in your list have symbols that cannot be a valid Windows name. I did not open your referenced link until just now. If you are using&amp;nbsp; p3icli to create pptx, you can use p3icli commands for title and captions for complex names or comments. I have used this method to write reports to audit control limits:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;create a list of p3icli commands, I called cmdlist, then for each i insert into cmdlist the p3icli commands for&lt;/LI&gt;&lt;LI&gt;for &lt;STRONG&gt;insert new slide&lt;/STRONG&gt; or &lt;STRONG&gt;duplicate template&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;a command for a complex &lt;STRONG&gt;title&lt;/STRONG&gt; that provides context parameter information, data dates, etc. about the chart to be displayed&lt;/LI&gt;&lt;LI&gt;a command to insert the picture using simple names like fid1 or fid2&lt;/LI&gt;&lt;LI&gt;a command for a caption based upon the analyses, whether limits are too loose or too tight etc.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I wrote this outline as an illustration of using p3icli title and caption options instead of using saved file names.&lt;/P&gt;&lt;P&gt;If you need to use an alternative for p3icli, this is not the proper forum, please send a private message.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After reviewing your list, you do not find unusual symbols like @&amp;nbsp; # % ( ) - ^ in your list, then you need to provide a snippet of your actual JSL code and the error message.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Nov 2018 19:02:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-save-each-graph-from-graph-builder-into-an-image-file/m-p/82439#M37147</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2018-11-02T19:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to save each graph from graph builder into an image file with the title from the List array</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-save-each-graph-from-graph-builder-into-an-image-file/m-p/82487#M37173</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/70"&gt;@gzmorgan0&lt;/a&gt;&lt;/P&gt;&lt;P&gt;Thanks for the repply.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to use JSL up until the point I need to create the report in pptx. The reason for saving the graphs according to the list name is because I need to create a report for each element of this list.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have put the JSL script below. The script as it is works but it does not save the graphs with its correspondent list name, It only saves each graph as sample_1; sample_2...etc. For example the name of my sample_1 is "EH3", however, the names will change every month and so ideally I would need it to get the name from the list.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I still have to add a summary tabulate for each Sample[i] and add it together with the graph to pptx. Is this possible?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;win = New window("Graphs", lub = Lineup Box (Ncol(3)));

//selecting the list of samples or variables for which a graph is required
Samples = (Associative Array(Column (dt4, "Sample"))&amp;lt;&amp;lt;Get keys);

//Loop through the list to generate the graphs
For (i = 1, i&amp;lt;= N items (Samples), i++,
dt4&amp;lt;&amp;lt;select where (:Sample==Samples[i]);
dt5=dt4&amp;lt;&amp;lt;subset(invisible,selected rows(1),selected column(0));

lub&amp;lt;&amp;lt;Append(
gb=dt5 &amp;lt;&amp;lt; Graph Builder(
	Size( 894, 625 ),
	Legend Position( "Bottom" ),
	Show Title( 0 ),
	Show Control Panel( 0 ),
	Variables(
		X( :Days ),
		Y( :Model Growth rate ),
		Y( :Growth rate, Position( 1 ) ),
		Group X( :Sample, Show Title( 0 ), N View Levels( 1 ) )
	),
	Elements(
		Points( X, Y( 2 ), Legend( 14 ), Jitter Limit( 1.1193 ) ),
		Smoother( X, Y( 1 ), Legend( 15 ), Lambda( 0.0000146251389195779 ) )
	),
	Local Data Filter(
			Close Outline( 1 ),
			Add Filter(
				columns( :Sample ),
				Where( :Sample == Samples[i] ),
				Display( :Sample, Size( 224, 126 ), List Display )
			) 
	), SendToReport(
		Dispatch(
			{},
			"Days",
			ScaleBox,
			{Min( 0 ), Max( 21 ), Inc( 1 ), Minor Ticks( 1 ),
			Label Row(
				{Inside Ticks( 1 ), Set Font( "Calibri" ), Set Font Size( 14 )}
			)}
		),
		Dispatch(
			{},
			"Model Growth rate",
			ScaleBox,
			{Inc( 50 ), Minor Ticks( 0 ),
			Label Row(
				{Inside Ticks( 1 ), Set Font( "Calibri" ), Set Font Size( 14 )}
			)}
		),
		Dispatch(
			{},
			"400",
			ScaleBox,
			{Legend Model(
				14,
				Level Name( 0, "Experimental", Item ID( "Growth rate", 1 ) ),
				Properties( 0, {Marker Size( 5 )}, Item ID( "Growth rate", 1 ) )
			), Legend Model(
				15,
				Level Name( 0, "Model", Item ID( "Smooth(Model Growth rate", 1 ) ),
				Properties(
					0,
					{Line Color( 32 ), Line Width( 3 )},
					Item ID( "Smooth(Model Growth rate)", 1 )
				)
			)}
		),
		Dispatch(
			{},
			"X title",
			TextEditBox,
			{Set Font( "Calibri" ), Set Font Size( 14 )}
		),
		Dispatch(
			{},
			"Y title",
			TextEditBox,
			{Set Font( "Calibri" ), Set Font Size( 14 ),
			Set Text( "Growth rate (g/s)" )}
		),
		Dispatch( {}, "Graph Builder", Outlinebox, {Set Title( "" )})));
	Report(gb)[Axisbox(2)]&amp;lt;&amp;lt;Min(0);
	
	
		gb&amp;lt;&amp;lt; save picture(Eval Insert("C:\Users\ioliveira\Desktop\data\sample_^i^.png"));););

	
(win &amp;lt;&amp;lt; XPath("//OutlineBox[@helpKey='Data Filter']") ) &amp;lt;&amp;lt; Visibility("collapse");	&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Nov 2018 18:45:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-save-each-graph-from-graph-builder-into-an-image-file/m-p/82487#M37173</guid>
      <dc:creator>ivomdb</dc:creator>
      <dc:date>2018-11-04T18:45:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to save each graph from graph builder into an image file with the title from the List array</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-save-each-graph-from-graph-builder-into-an-image-file/m-p/82513#M37181</link>
      <description>&lt;P&gt;I can't directly answer your question but just a couple of thoughts around the approach. You might want to explore these via the point'n'clikc before looknig at scripting.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. You might want to use the Page role in Graph Builder because this creates a separate plot with axes for each level of the variable in Page.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA\Big Class.JMP" );

Graph Builder(
	Size( 518, 2948 ),
	Show Control Panel( 0 ),
	Variables( X( :weight ), Y( :height ), Page( :age ) ),
	Elements( Points( X, Y, Legend( 5 ) ), Smoother( X, Y, Legend( 6 ) ) )
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. Might be worth thinking about how you can use the save as powerpoint capability. From any report: File &amp;gt; Save As &amp;gt; Save as type: Powerpoint Presentation. Save Presentation() is the JSL function.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
Open( "$SAMPLE_DATA/Big Class.jmp" );
biv = bivariate( y( :weight ), x( :height ) );
rbiv = biv &amp;lt;&amp;lt; report;
rbiv &amp;lt;&amp;lt; Save Presentation( "$TEMP/jmp_example.pptx" );
Open( "$TEMP/jmp_example.pptx" );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope that helps.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Phil&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Nov 2018 11:45:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-save-each-graph-from-graph-builder-into-an-image-file/m-p/82513#M37181</guid>
      <dc:creator>Phil_Kay</dc:creator>
      <dc:date>2018-11-05T11:45:29Z</dc:date>
    </item>
  </channel>
</rss>

