<?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: ODS PDF try to fit output in one page in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-try-to-fit-output-in-one-page/m-p/43216#M5779</link>
    <description>SBB,&lt;BR /&gt;
Thanks again. The COLUMNS =  works.&lt;BR /&gt;
&lt;BR /&gt;
What about an option to move a hyperlink to the middle.&lt;BR /&gt;
For example I have a hyperlink as:&lt;BR /&gt;
ods pdf text = "^S={JUST=CENTER VJUST=MIDDLE CELLHEIGHT=20PT FONT_SIZE=10PT CELLWIDTH=10CM  URL='#Detail2'} Click for Detail ";&lt;BR /&gt;
&lt;BR /&gt;
However the box is forced to the left. I would like to move this more to the middle. I was looking at different  options however could not find the one that would move this. any clues?&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
jp

Message was edited by: jplarios</description>
    <pubDate>Wed, 20 Jan 2010 15:55:58 GMT</pubDate>
    <dc:creator>jplarios</dc:creator>
    <dc:date>2010-01-20T15:55:58Z</dc:date>
    <item>
      <title>ODS PDF try to fit output in one page</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-try-to-fit-output-in-one-page/m-p/43214#M5777</link>
      <description>HI:&lt;BR /&gt;
Currently, I have a dataset printout into PDF and when the output fills a page it goes to the next as expected. Is it possible to, say, if I have a dataset with very few columns to print into the same page next to each other and once filled , fill the other page the same?&lt;BR /&gt;
&lt;BR /&gt;
thanks for any input,&lt;BR /&gt;
jp

Message was edited by: jplarios</description>
      <pubDate>Wed, 20 Jan 2010 02:33:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-try-to-fit-output-in-one-page/m-p/43214#M5777</guid>
      <dc:creator>jplarios</dc:creator>
      <dc:date>2010-01-20T02:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF try to fit output in one page</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-try-to-fit-output-in-one-page/m-p/43215#M5778</link>
      <description>Investigate using ODS PDF options COLUMNS and STARTPAGE.  Also, ODS LAYOUT, combined with ODS PDF, may also be useful for your interests.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;BR /&gt;
&lt;BR /&gt;
Recommended Google advanced search argument on this topic:&lt;BR /&gt;
&lt;BR /&gt;
ods pdf multiple columns site:sas.com</description>
      <pubDate>Wed, 20 Jan 2010 02:58:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-try-to-fit-output-in-one-page/m-p/43215#M5778</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2010-01-20T02:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF try to fit output in one page</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-try-to-fit-output-in-one-page/m-p/43216#M5779</link>
      <description>SBB,&lt;BR /&gt;
Thanks again. The COLUMNS =  works.&lt;BR /&gt;
&lt;BR /&gt;
What about an option to move a hyperlink to the middle.&lt;BR /&gt;
For example I have a hyperlink as:&lt;BR /&gt;
ods pdf text = "^S={JUST=CENTER VJUST=MIDDLE CELLHEIGHT=20PT FONT_SIZE=10PT CELLWIDTH=10CM  URL='#Detail2'} Click for Detail ";&lt;BR /&gt;
&lt;BR /&gt;
However the box is forced to the left. I would like to move this more to the middle. I was looking at different  options however could not find the one that would move this. any clues?&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
jp

Message was edited by: jplarios</description>
      <pubDate>Wed, 20 Jan 2010 15:55:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-try-to-fit-output-in-one-page/m-p/43216#M5779</guid>
      <dc:creator>jplarios</dc:creator>
      <dc:date>2010-01-20T15:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF try to fit output in one page</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-try-to-fit-output-in-one-page/m-p/43217#M5780</link>
      <description>Hi:&lt;BR /&gt;
  The text placed by ODS ... TEXT= is styled by the USERTEXT style element in the style template. I usually change the style template for the TEXT element. You can change everything except URL= in a simple style template change, as shown below.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]&lt;BR /&gt;
                                  &lt;BR /&gt;
ods path work.temp(update) sashelp.tmplmst(read);&lt;BR /&gt;
                         &lt;BR /&gt;
**1;&lt;BR /&gt;
proc template;&lt;BR /&gt;
  define style styles.ctrtext;&lt;BR /&gt;
  parent=styles.printer;&lt;BR /&gt;
  style usertext from usertext /&lt;BR /&gt;
    just=center&lt;BR /&gt;
    font_size=10pt&lt;BR /&gt;
    font_weight=bold;&lt;BR /&gt;
  end;&lt;BR /&gt;
run;&lt;BR /&gt;
                                              &lt;BR /&gt;
ods pdf file='c:\temp\center_works.pdf' style=styles.ctrtext columns=2;&lt;BR /&gt;
ods escapechar='^';&lt;BR /&gt;
               &lt;BR /&gt;
title '1) This Works -- using default cellwidth and cellheight';&lt;BR /&gt;
proc print data=sashelp.class(obs=2);&lt;BR /&gt;
  var name age height;&lt;BR /&gt;
run;&lt;BR /&gt;
            &lt;BR /&gt;
ods pdf text = "^S={URL='#Detail2'} Click for Detail ";&lt;BR /&gt;
                                        &lt;BR /&gt;
proc print data=sashelp.class(obs=3);&lt;BR /&gt;
  var name sex weight;&lt;BR /&gt;
run;&lt;BR /&gt;
ods _all_ close;&lt;BR /&gt;
                               &lt;BR /&gt;
**2;&lt;BR /&gt;
proc template;&lt;BR /&gt;
  define style styles.chgurl;&lt;BR /&gt;
  parent=styles.printer;&lt;BR /&gt;
  style usertext from usertext /&lt;BR /&gt;
    just=center&lt;BR /&gt;
    font_size=10pt&lt;BR /&gt;
    font_weight=bold&lt;BR /&gt;
    cellwidth=10cm&lt;BR /&gt;
    cellheight=20pt&lt;BR /&gt;
    vjust=middle;&lt;BR /&gt;
  end;&lt;BR /&gt;
run;&lt;BR /&gt;
                           &lt;BR /&gt;
ods pdf file='c:\temp\center_also_work.pdf' style=styles.chgurl columns=2;&lt;BR /&gt;
ods escapechar='^';&lt;BR /&gt;
                   &lt;BR /&gt;
title '2) 10CM seems too wide for CELLWIDTH';&lt;BR /&gt;
proc print data=sashelp.class(obs=2);&lt;BR /&gt;
  var name age height;&lt;BR /&gt;
run;&lt;BR /&gt;
               &lt;BR /&gt;
ods pdf text = "^S={URL='#Detail2'} Click for Detail ";&lt;BR /&gt;
                           &lt;BR /&gt;
proc print data=sashelp.class(obs=3);&lt;BR /&gt;
  var name sex weight;&lt;BR /&gt;
run;&lt;BR /&gt;
ods _all_ close;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Wed, 20 Jan 2010 16:19:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-try-to-fit-output-in-one-page/m-p/43217#M5780</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-01-20T16:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF try to fit output in one page</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-try-to-fit-output-in-one-page/m-p/43218#M5781</link>
      <description>Thanks Cynthia . using proc template helped.&lt;BR /&gt;
jp</description>
      <pubDate>Sat, 30 Jan 2010 15:29:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-try-to-fit-output-in-one-page/m-p/43218#M5781</guid>
      <dc:creator>jplarios</dc:creator>
      <dc:date>2010-01-30T15:29:54Z</dc:date>
    </item>
  </channel>
</rss>

