<?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 How to export proc tabulate procedure to image file (png or jpeg)? in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-to-export-proc-tabulate-procedure-to-image-file-png-or-jpeg/m-p/89265#M25450</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi to All&lt;/P&gt;&lt;P&gt;This is my ods proc. tab. export to html:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods listing close;&lt;/P&gt;&lt;P&gt;ods html body = 'f:\opdata.html' ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;proc tabulate data=opdata_readin;&lt;/P&gt;&lt;P&gt; class process place taget time;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; table process = '' * place = ''* taget = '' , time = ''&lt;/P&gt;&lt;P&gt; /misstext='0';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;ods html close;&lt;/P&gt;&lt;P&gt;ods listing;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please tell me how to export proc tabulate procedure to image (png or jpeg)?&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Jun 2012 06:36:22 GMT</pubDate>
    <dc:creator>bob021</dc:creator>
    <dc:date>2012-06-21T06:36:22Z</dc:date>
    <item>
      <title>How to export proc tabulate procedure to image file (png or jpeg)?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-export-proc-tabulate-procedure-to-image-file-png-or-jpeg/m-p/89265#M25450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi to All&lt;/P&gt;&lt;P&gt;This is my ods proc. tab. export to html:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods listing close;&lt;/P&gt;&lt;P&gt;ods html body = 'f:\opdata.html' ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;proc tabulate data=opdata_readin;&lt;/P&gt;&lt;P&gt; class process place taget time;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; table process = '' * place = ''* taget = '' , time = ''&lt;/P&gt;&lt;P&gt; /misstext='0';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;ods html close;&lt;/P&gt;&lt;P&gt;ods listing;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please tell me how to export proc tabulate procedure to image (png or jpeg)?&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2012 06:36:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-export-proc-tabulate-procedure-to-image-file-png-or-jpeg/m-p/89265#M25450</guid>
      <dc:creator>bob021</dc:creator>
      <dc:date>2012-06-21T06:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to export proc tabulate procedure to image file (png or jpeg)?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-export-proc-tabulate-procedure-to-image-file-png-or-jpeg/m-p/89266#M25451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about using Universal Print ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;options printerpath=(png out);
filename out 'c:\out.png';
ods listing close;
ods printer;
proc tabulate data=sashelp.class;
class sex age;
var weight height;
&amp;nbsp;&amp;nbsp;&amp;nbsp; table sex, age*(weight height)
/misstext='0';
run;

ods printer close;
ods listing;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2012 07:28:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-export-proc-tabulate-procedure-to-image-file-png-or-jpeg/m-p/89266#M25451</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-06-21T07:28:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to export proc tabulate procedure to image file (png or jpeg)?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-export-proc-tabulate-procedure-to-image-file-png-or-jpeg/m-p/89267#M25452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ksharp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for quick respond.&lt;/P&gt;&lt;P&gt;1. When I run this SAS first ofer me window "save as *.xps" I wan't just to export to image file.&lt;/P&gt;&lt;P&gt;2. When I cancel "save as ..." window SAS finalze export to png but no image in it, just empty png file.&lt;/P&gt;&lt;P&gt;3. printerpath = ERROR 3-12: Invalid option value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2012 08:08:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-export-proc-tabulate-procedure-to-image-file-png-or-jpeg/m-p/89267#M25452</guid>
      <dc:creator>bob021</dc:creator>
      <dc:date>2012-06-21T08:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to export proc tabulate procedure to image file (png or jpeg)?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-export-proc-tabulate-procedure-to-image-file-png-or-jpeg/m-p/89268#M25453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What environment is your SAS under ?&lt;/P&gt;&lt;P&gt;And Did you try click 'save as' and give it a name ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2012 08:44:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-export-proc-tabulate-procedure-to-image-file-png-or-jpeg/m-p/89268#M25453</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-06-21T08:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to export proc tabulate procedure to image file (png or jpeg)?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-export-proc-tabulate-procedure-to-image-file-png-or-jpeg/m-p/89269#M25454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. My SAS is PC version. SAS 9.1.3. Service Pack 4 for XP_PRO platform.&lt;/P&gt;&lt;P&gt;2. Yes, save as *.xps and table is in file.&lt;/P&gt;&lt;P&gt;3. Also found one error in error log. "printerpath = ERROR 3-12: Invalid option value."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2012 08:51:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-export-proc-tabulate-procedure-to-image-file-png-or-jpeg/m-p/89269#M25454</guid>
      <dc:creator>bob021</dc:creator>
      <dc:date>2012-06-21T08:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to export proc tabulate procedure to image file (png or jpeg)?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-export-proc-tabulate-procedure-to-image-file-png-or-jpeg/m-p/89270#M25455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OH. You are using SAS9.1 .&lt;/P&gt;&lt;P&gt;Maybe you should check SAS9.1 documentation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2012 09:15:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-export-proc-tabulate-procedure-to-image-file-png-or-jpeg/m-p/89270#M25455</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-06-21T09:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to export proc tabulate procedure to image file (png or jpeg)?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-export-proc-tabulate-procedure-to-image-file-png-or-jpeg/m-p/89271#M25456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;&lt;P&gt;According SAS9.1 documentation It is a time for new version of SAS &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;Bob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2012 13:13:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-export-proc-tabulate-procedure-to-image-file-png-or-jpeg/m-p/89271#M25456</guid>
      <dc:creator>bob021</dc:creator>
      <dc:date>2012-06-21T13:13:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to export proc tabulate procedure to image file (png or jpeg)?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-export-proc-tabulate-procedure-to-image-file-png-or-jpeg/m-p/89272#M25457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OR, If you don't mind using GIF image.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;ods printer SAS file="c:\temp.gif" printer=gif;
proc tabulate data=sashelp.class;
class sex age;
var weight;
table sex,age*weight;
run;
ods printer close;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2012 14:56:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-export-proc-tabulate-procedure-to-image-file-png-or-jpeg/m-p/89272#M25457</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-06-21T14:56:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to export proc tabulate procedure to image file (png or jpeg)?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-export-proc-tabulate-procedure-to-image-file-png-or-jpeg/m-p/89273#M25458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi: this previous forum posting is immediately relevant -- it shows exactly how to send tabulate output to a PNG file using PAPERSIZE and PRINTERPATH.&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="active_link" href="https://communities.sas.com/message/124855#124855"&gt;https://communities.sas.com/message/124855#124855&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The person who posted this question, posted it in the ODS GRAPHICS forum, but the solution involved making a PNG file from TABULATE output. The solution was tested in SAS 9.3...I don't know whether it would work in 9.1.3. That is a question for Tech Support.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2012 16:39:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-export-proc-tabulate-procedure-to-image-file-png-or-jpeg/m-p/89273#M25458</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2012-06-21T16:39:58Z</dc:date>
    </item>
  </channel>
</rss>

