<?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 fancy, polished reports in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/fancy-polished-reports/m-p/2634#M1149</link>
    <description>Hi. Does anyone know if SAS is capable or the right tool to produce a fancy, polished .pdf report? The report will consist of a multi-colored chart and a multi-colored table on one page with formatted text. We've been pulling the data from sas into excel then into word but I'm trying to limit some handling time. Thanks for any advice.</description>
    <pubDate>Mon, 26 Mar 2007 16:17:47 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2007-03-26T16:17:47Z</dc:date>
    <item>
      <title>fancy, polished reports</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/fancy-polished-reports/m-p/2634#M1149</link>
      <description>Hi. Does anyone know if SAS is capable or the right tool to produce a fancy, polished .pdf report? The report will consist of a multi-colored chart and a multi-colored table on one page with formatted text. We've been pulling the data from sas into excel then into word but I'm trying to limit some handling time. Thanks for any advice.</description>
      <pubDate>Mon, 26 Mar 2007 16:17:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/fancy-polished-reports/m-p/2634#M1149</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-03-26T16:17:47Z</dc:date>
    </item>
    <item>
      <title>Re: fancy, polished reports</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/fancy-polished-reports/m-p/2635#M1150</link>
      <description>Hi:&lt;BR /&gt;
  Look at the Exhibits at the end of this SUGI paper by Pete Lund -- Exhibits 6 and 7 seem to be what you're describing.&lt;BR /&gt;
&lt;A href="http://www2.sas.com/proceedings/sugi31/092-31.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/sugi31/092-31.pdf&lt;/A&gt;&lt;BR /&gt;
  &lt;BR /&gt;
  SAS and ODS can produce very polished PDF reports directly from your procedure output (instead of following the path that you outline). You may find yourself exploring the world of STYLE= overrides, ODS ESCAPECHAR and Style templates, but the results will be worth the effort!&lt;BR /&gt;
     &lt;BR /&gt;
Good luck,  &lt;BR /&gt;
cynthia</description>
      <pubDate>Mon, 26 Mar 2007 17:20:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/fancy-polished-reports/m-p/2635#M1150</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2007-03-26T17:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: fancy, polished reports</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/fancy-polished-reports/m-p/2636#M1151</link>
      <description>Thank you. The paper does make it look possible to do what I need to, if I can just figure it out!! I'm kind of a SAS newbie so it's a challenge, but at least I know it is possible. Thanks for your quick response.</description>
      <pubDate>Mon, 26 Mar 2007 17:31:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/fancy-polished-reports/m-p/2636#M1151</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-03-26T17:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: fancy, polished reports</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/fancy-polished-reports/m-p/2637#M1152</link>
      <description>SAS is pretty simple. And, ODS is just a method of directing your output to different destinations. My advice is:&lt;BR /&gt;
1) have a working program/analysis/report for one section/piece of what you need to do&lt;BR /&gt;
2) direct the output from that report to PDF&lt;BR /&gt;
3) learn how to tweak your code to get that report looking the way you want&lt;BR /&gt;
4) move on and repeat steps 1-3 for other sections of the report&lt;BR /&gt;
5) after you have successfully generated each piece of the report, work to get ALL the pieces together in one output.&lt;BR /&gt;
  &lt;BR /&gt;
While you're testing, remember this model: [pre]&lt;BR /&gt;
ods pdf file='piece1.pdf';&lt;BR /&gt;
...code for piece 1...&lt;BR /&gt;
ods pdf close;&lt;BR /&gt;
         &lt;BR /&gt;
ods pdf file='piece2.pdf';&lt;BR /&gt;
...code for piece 2...&lt;BR /&gt;
ods pdf close;[/pre]&lt;BR /&gt;
That way, the pieces of your report can be developed and working separate from each other.&lt;BR /&gt;
       &lt;BR /&gt;
THEN, when you're all done and at step 5, then do THIS to get all the pieces into ONE PDF file:[pre]&lt;BR /&gt;
ods pdf file='piece1.pdf';&lt;BR /&gt;
...code for piece 1...&lt;BR /&gt;
...code for piece 2...&lt;BR /&gt;
...code for piece 3...&lt;BR /&gt;
ods pdf close;[/pre]&lt;BR /&gt;
Of course, if you are going to need to produce output as shown in Pete's Exhibit 7, then you will need to get into a study of ODS LAYOUT/ODS REGION -- which is still experimental for SAS 9.1.3 -- so Tech Support will be a big help to you there. But I suggest you get all the individual pieces working before you dive into ODS LAYOUT.&lt;BR /&gt;
  &lt;BR /&gt;
There are many resources that can help you: &lt;BR /&gt;
SUPPORT.SAS.COM has many ODS and report procedure FAQs and we offer both classroom and Live Web classes on reporting and ODS. In addition, there are many SUGI and user group papers on using the techniques described in Pete's paper.&lt;BR /&gt;
  &lt;BR /&gt;
This forum is a great place to ask questions, too. And, Tech Support is always available to help you with more complex, data-related or destination-related questions.&lt;BR /&gt;
  &lt;BR /&gt;
Good luck!&lt;BR /&gt;
cynthia</description>
      <pubDate>Mon, 26 Mar 2007 18:45:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/fancy-polished-reports/m-p/2637#M1152</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2007-03-26T18:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: fancy, polished reports</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/fancy-polished-reports/m-p/2638#M1153</link>
      <description>Thanks for all your help, Cynthia!</description>
      <pubDate>Mon, 26 Mar 2007 19:03:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/fancy-polished-reports/m-p/2638#M1153</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-03-26T19:03:33Z</dc:date>
    </item>
  </channel>
</rss>

