<?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: PROC TABULATE or PROC REPORT in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/PROC-TABULATE-or-PROC-REPORT/m-p/274130#M54658</link>
    <description>&lt;P&gt;Well, you should be able to do it with eiher. &amp;nbsp;My preference is to always create a dataset which looks like the output required then proc report that quite basically as then you can validated that dataset and store it etc. but that is personal preference. &amp;nbsp;Look at the SAS documents on the two, and try some things out, see what your happy with.&lt;/P&gt;</description>
    <pubDate>Tue, 31 May 2016 15:47:02 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2016-05-31T15:47:02Z</dc:date>
    <item>
      <title>PROC TABULATE or PROC REPORT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-TABULATE-or-PROC-REPORT/m-p/274116#M54651</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;I am tryinh to create a report student's grade with two image at the top (school logo) and bottom (signature). Can you please suggest me if I should go for PROC REPORT or PROC TABULATE or any other option. I would appreciate if you can show me a sample code/link from internet/sas community page. Thanks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3403iD967475D5264172E/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="POG Image.jpg" title="POG Image.jpg" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 15:11:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-TABULATE-or-PROC-REPORT/m-p/274116#M54651</guid>
      <dc:creator>mlogan</dc:creator>
      <dc:date>2016-05-31T15:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: PROC TABULATE or PROC REPORT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-TABULATE-or-PROC-REPORT/m-p/274130#M54658</link>
      <description>&lt;P&gt;Well, you should be able to do it with eiher. &amp;nbsp;My preference is to always create a dataset which looks like the output required then proc report that quite basically as then you can validated that dataset and store it etc. but that is personal preference. &amp;nbsp;Look at the SAS documents on the two, and try some things out, see what your happy with.&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 15:47:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-TABULATE-or-PROC-REPORT/m-p/274130#M54658</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-05-31T15:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: PROC TABULATE or PROC REPORT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-TABULATE-or-PROC-REPORT/m-p/274264#M54699</link>
      <description>It is more suited for proc report . I think Cynthia is good at making report. Maybe She could give you some advice.</description>
      <pubDate>Wed, 01 Jun 2016 02:24:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-TABULATE-or-PROC-REPORT/m-p/274264#M54699</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-06-01T02:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: PROC TABULATE or PROC REPORT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PROC-TABULATE-or-PROC-REPORT/m-p/274267#M54700</link>
      <description>&lt;P&gt;Here is an example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data class;
 set sashelp.class;
run;
proc sort data=class;by name sex;run;



ods _ALL_ CLOSE;
ods pdf file='/folders/myfolders/xx.pdf';
ods escapechar='~';
options nobyline nodate;
title1 '~S={preimage="/folders/myfolders/temp.png"}';
title2 'Student Report';
title3 "StudenName: #byval1     Sex: #byval2";
proc report data=class nowd;
by name sex;
column name sex age weight height;
define name/noprint;
define sex/noprint;
run;
footnote1 '_________________';
footnote2 'Signature';
ods pdf close;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 01 Jun 2016 02:51:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PROC-TABULATE-or-PROC-REPORT/m-p/274267#M54700</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-06-01T02:51:56Z</dc:date>
    </item>
  </channel>
</rss>

