<?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: Save output results with format .png (not graph) in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Save-output-results-with-format-png-not-graph/m-p/882852#M39172</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Also, you know that you can export straight to a PowerPoint file?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes you can output directly to PowerPoint, but you are limited in how much can appear on one slide in PowerPoint, you don't have complete control. There was a recent BASUG talk on this, and there are a lot of drawbacks to sending output directly to PowerPoint. I personally have decided to not even consider that as an option.&lt;/P&gt;</description>
    <pubDate>Wed, 28 Jun 2023 19:16:31 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2023-06-28T19:16:31Z</dc:date>
    <item>
      <title>Save output results with format .png (not graph)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Save-output-results-with-format-png-not-graph/m-p/882831#M39165</link>
      <description>&lt;P&gt;&lt;SPAN class="HwtZe"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Hello, &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="HwtZe"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;I would like to save the output of a result table in .png format so that I can then import it into a powerpoint.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;I searched, but couldn't find an answer.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Can you help me ?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV class="lRu31"&gt;&lt;SPAN class="HwtZe"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;For the moment, I take screenshots of my results while for the graphs, a right click allows you to save the graph in .png.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="UdTY9 WdefRb" aria-hidden="true" data-location="2"&gt;
&lt;DIV class="kO6q6e"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;SPAN class="HwtZe"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Sincerely yours,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="HwtZe"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Nathalie&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="HwtZe"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Here, is an example :&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data TP.freqs1;
set TP.freqs1;
label grp = 'Groupe' num1 = 'Numérateur' num2 = 'Dénominateur' rapport = 'Pourcentage';
run;
	proc print data=TP.freqs1 noobs label;
where num1 ne .; 
var grp num1 num2 rapport;
run; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN class="HwtZe"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Image1.png" style="width: 450px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/85436iE2F7778822F108F4/image-size/large?v=v2&amp;amp;px=999" role="button" title="Image1.png" alt="Image1.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2023 18:13:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Save-output-results-with-format-png-not-graph/m-p/882831#M39165</guid>
      <dc:creator>Nathalie1</dc:creator>
      <dc:date>2023-06-28T18:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: Save output results with format .png (not graph)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Save-output-results-with-format-png-not-graph/m-p/882834#M39166</link>
      <description>&lt;P&gt;Example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods printer printer=png file="test.png";
proc print data=sashelp.class;
run;
ods printer close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 28 Jun 2023 18:22:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Save-output-results-with-format-png-not-graph/m-p/882834#M39166</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-06-28T18:22:27Z</dc:date>
    </item>
    <item>
      <title>Re: Save output results with format .png (not graph)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Save-output-results-with-format-png-not-graph/m-p/882842#M39167</link>
      <description>&lt;P&gt;&lt;SPAN class="HwtZe"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Thank you very much.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="HwtZe"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;There is a small point to improve, is it possible to remove "the SAS system" and the date?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="HwtZe"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Sincerely yours,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="HwtZe"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Nathalie&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="HwtZe"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="test.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/85439iFD53EE85D6C671D0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="test.png" alt="test.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&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;</description>
      <pubDate>Wed, 28 Jun 2023 18:42:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Save-output-results-with-format-png-not-graph/m-p/882842#M39167</guid>
      <dc:creator>Nathalie1</dc:creator>
      <dc:date>2023-06-28T18:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: Save output results with format .png (not graph)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Save-output-results-with-format-png-not-graph/m-p/882845#M39168</link>
      <description>ods nodate nonumber; &lt;BR /&gt;title;&lt;BR /&gt;&lt;BR /&gt;Add that before your proc print.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-you-get-rid-of-quot-The-SAS-System-quot-when-printing/td-p/21961" target="_blank"&gt;https://communities.sas.com/t5/ODS-and-Base-Reporting/How-do-you-get-rid-of-quot-The-SAS-System-quot-when-printing/td-p/21961&lt;/A&gt;</description>
      <pubDate>Wed, 28 Jun 2023 18:51:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Save-output-results-with-format-png-not-graph/m-p/882845#M39168</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-06-28T18:51:30Z</dc:date>
    </item>
    <item>
      <title>Re: Save output results with format .png (not graph)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Save-output-results-with-format-png-not-graph/m-p/882846#M39169</link>
      <description>Also, you know that you can export straight to a PowerPoint file?</description>
      <pubDate>Wed, 28 Jun 2023 18:52:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Save-output-results-with-format-png-not-graph/m-p/882846#M39169</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-06-28T18:52:00Z</dc:date>
    </item>
    <item>
      <title>Re: Save output results with format .png (not graph)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Save-output-results-with-format-png-not-graph/m-p/882850#M39170</link>
      <description>&lt;P&gt;Thank you very much for your two responses, I obtain what I want.&lt;/P&gt;
&lt;P&gt;SAS communities is wonderful.&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Sincerely yours,&lt;/P&gt;
&lt;P&gt;Nathalie&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ODS printer printer=png file = "C:\Users\771\Pictures\test.png" ;
OPTIONS NODATE NONUMBER;
title;
    proc print data=sashelp.class;
run;
ods printer close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="test.png" style="width: 200px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/85442i5008F50CA9542329/image-size/small?v=v2&amp;amp;px=200" role="button" title="test.png" alt="test.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2023 19:03:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Save-output-results-with-format-png-not-graph/m-p/882850#M39170</guid>
      <dc:creator>Nathalie1</dc:creator>
      <dc:date>2023-06-28T19:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: Save output results with format .png (not graph)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Save-output-results-with-format-png-not-graph/m-p/882851#M39171</link>
      <description>&lt;P&gt;No, I don't know. &lt;SPAN class="HwtZe"&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;I have to export my graphs and my tables in powerpoint, I am again a beginner (several years of illness) and I am alone to work in my team.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt; In addition, I have to learn R for bioinformatics.&lt;span class="lia-unicode-emoji" title=":face_with_rolling_eyes:"&gt;🙄&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2023 19:10:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Save-output-results-with-format-png-not-graph/m-p/882851#M39171</guid>
      <dc:creator>Nathalie1</dc:creator>
      <dc:date>2023-06-28T19:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: Save output results with format .png (not graph)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Save-output-results-with-format-png-not-graph/m-p/882852#M39172</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Also, you know that you can export straight to a PowerPoint file?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes you can output directly to PowerPoint, but you are limited in how much can appear on one slide in PowerPoint, you don't have complete control. There was a recent BASUG talk on this, and there are a lot of drawbacks to sending output directly to PowerPoint. I personally have decided to not even consider that as an option.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2023 19:16:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Save-output-results-with-format-png-not-graph/m-p/882852#M39172</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-06-28T19:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: Save output results with format .png (not graph)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Save-output-results-with-format-png-not-graph/m-p/882856#M39173</link>
      <description>True, but if you're planning for a PowerPoint in the end anyways, and you want to make it repeatable, using ODS seems to be a more efficient long run approach. All depends on the use case.</description>
      <pubDate>Wed, 28 Jun 2023 19:55:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Save-output-results-with-format-png-not-graph/m-p/882856#M39173</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-06-28T19:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: Save output results with format .png (not graph)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Save-output-results-with-format-png-not-graph/m-p/882857#M39174</link>
      <description>&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/v_040/odsgs/p0pt9frq9pagk3n1swh91pu3znzk.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/v_040/odsgs/p0pt9frq9pagk3n1swh91pu3znzk.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ideally, someday, HTML5 slides via HTML would be an ideal destination.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2023 19:56:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Save-output-results-with-format-png-not-graph/m-p/882857#M39174</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-06-28T19:56:51Z</dc:date>
    </item>
    <item>
      <title>Re: Save output results with format .png (not graph)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Save-output-results-with-format-png-not-graph/m-p/882899#M39175</link>
      <description>&lt;P&gt;Thank you for your help and the links. Is it possible to make an output HTML with tabs ?&lt;/P&gt;
&lt;P&gt;Nathalie&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2023 07:02:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Save-output-results-with-format-png-not-graph/m-p/882899#M39175</guid>
      <dc:creator>Nathalie1</dc:creator>
      <dc:date>2023-06-29T07:02:24Z</dc:date>
    </item>
  </channel>
</rss>

