<?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 Stopping proc tabulate or proc sql from dispayling output in ods pdf in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Stopping-proc-tabulate-or-proc-sql-from-dispayling-output-in-ods/m-p/69073#M7935</link>
    <description>Hi&lt;BR /&gt;
&lt;BR /&gt;
I'm trying to produce graphs that have axis which automatically re-scale depending on the data. In order to do that I need to calculate the min and max's of certain variables. However whenever I do that the output of the proc tabulate shows in the pdf.&lt;BR /&gt;
&lt;BR /&gt;
Does anyone know how I can stop that?&lt;BR /&gt;
&lt;BR /&gt;
The program is already using an awefull lot of macros and is quite complicated so I was hoping I wouldn't have to store these values in macros.&lt;BR /&gt;
&lt;BR /&gt;
All suggestions are greatly appreciated.&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Chris</description>
    <pubDate>Wed, 02 Sep 2009 17:40:12 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2009-09-02T17:40:12Z</dc:date>
    <item>
      <title>Stopping proc tabulate or proc sql from dispayling output in ods pdf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Stopping-proc-tabulate-or-proc-sql-from-dispayling-output-in-ods/m-p/69073#M7935</link>
      <description>Hi&lt;BR /&gt;
&lt;BR /&gt;
I'm trying to produce graphs that have axis which automatically re-scale depending on the data. In order to do that I need to calculate the min and max's of certain variables. However whenever I do that the output of the proc tabulate shows in the pdf.&lt;BR /&gt;
&lt;BR /&gt;
Does anyone know how I can stop that?&lt;BR /&gt;
&lt;BR /&gt;
The program is already using an awefull lot of macros and is quite complicated so I was hoping I wouldn't have to store these values in macros.&lt;BR /&gt;
&lt;BR /&gt;
All suggestions are greatly appreciated.&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Chris</description>
      <pubDate>Wed, 02 Sep 2009 17:40:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Stopping-proc-tabulate-or-proc-sql-from-dispayling-output-in-ods/m-p/69073#M7935</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-09-02T17:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping proc tabulate or proc sql from dispayling output in ods pdf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Stopping-proc-tabulate-or-proc-sql-from-dispayling-output-in-ods/m-p/69074#M7936</link>
      <description>I think the ODS EXCLUDE statement is what you're looking for: &lt;A href="http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a002233281.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a002233281.htm&lt;/A&gt;.</description>
      <pubDate>Wed, 02 Sep 2009 18:08:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Stopping-proc-tabulate-or-proc-sql-from-dispayling-output-in-ods/m-p/69074#M7936</guid>
      <dc:creator>Tim_SAS</dc:creator>
      <dc:date>2009-09-02T18:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping proc tabulate or proc sql from dispayling output in ods pdf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Stopping-proc-tabulate-or-proc-sql-from-dispayling-output-in-ods/m-p/69075#M7937</link>
      <description>Hi Tim&lt;BR /&gt;
&lt;BR /&gt;
Thanks for the reply, but I am still having trouble getting rid of the output.&lt;BR /&gt;
&lt;BR /&gt;
My code basically reads like:&lt;BR /&gt;
&lt;BR /&gt;
ods pdf file="&lt;PATH&gt;";&lt;BR /&gt;
ods pdf exclude SQL.SQL_Results  (which i got using ods trace);&lt;BR /&gt;
&lt;BR /&gt;
proc report ;&lt;BR /&gt;
&lt;REPORT stuff=""&gt;&lt;BR /&gt;
run;&lt;BR /&gt;
quit;&lt;BR /&gt;
&lt;BR /&gt;
proc sql;&lt;BR /&gt;
   select min(age)&lt;BR /&gt;
   into :age&lt;BR /&gt;
   from table&lt;BR /&gt;
quit;&lt;BR /&gt;
&lt;BR /&gt;
ods pdf close;&lt;BR /&gt;
&lt;BR /&gt;
I don't want to display the SQL step which is only assigning macros. Am i putting the exclude statement in the wrong place?&lt;BR /&gt;
&lt;BR /&gt;
Thanks again for your help.&lt;BR /&gt;
Chris&lt;/REPORT&gt;&lt;/PATH&gt;</description>
      <pubDate>Thu, 03 Sep 2009 08:02:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Stopping-proc-tabulate-or-proc-sql-from-dispayling-output-in-ods/m-p/69075#M7937</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-09-03T08:02:21Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping proc tabulate or proc sql from dispayling output in ods pdf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Stopping-proc-tabulate-or-proc-sql-from-dispayling-output-in-ods/m-p/69076#M7938</link>
      <description>Chris,&lt;BR /&gt;
&lt;BR /&gt;
  Selection/exclusion lists reset at proc boundaries by default.  Try putting the ODS PDF EXCLUDE statement immediately before the PROC SQL statement.&lt;BR /&gt;
&lt;BR /&gt;
-- David Kelley, SAS</description>
      <pubDate>Thu, 03 Sep 2009 13:50:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Stopping-proc-tabulate-or-proc-sql-from-dispayling-output-in-ods/m-p/69076#M7938</guid>
      <dc:creator>David_SAS</dc:creator>
      <dc:date>2009-09-03T13:50:41Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping proc tabulate or proc sql from dispayling output in ods pdf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Stopping-proc-tabulate-or-proc-sql-from-dispayling-output-in-ods/m-p/69077#M7939</link>
      <description>Why not just use NOPRINT on the PROC SQL or RESET NOPRINT; statement?</description>
      <pubDate>Thu, 03 Sep 2009 13:55:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Stopping-proc-tabulate-or-proc-sql-from-dispayling-output-in-ods/m-p/69077#M7939</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2009-09-03T13:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping proc tabulate or proc sql from dispayling output in ods pdf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Stopping-proc-tabulate-or-proc-sql-from-dispayling-output-in-ods/m-p/69078#M7940</link>
      <description>It may be necessary to move any of the "support" steps to outside of the ods pdf area of the code. The intermediate data sets or macro variables will persist unless explicitly removed.&lt;BR /&gt;
&lt;BR /&gt;
It may not make the program code quite as clear when the final displayed output is separated from the parts creating the data but it will correct the display issue.</description>
      <pubDate>Thu, 03 Sep 2009 22:13:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Stopping-proc-tabulate-or-proc-sql-from-dispayling-output-in-ods/m-p/69078#M7940</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2009-09-03T22:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: Stopping proc tabulate or proc sql from dispayling output in ods pdf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Stopping-proc-tabulate-or-proc-sql-from-dispayling-output-in-ods/m-p/69079#M7941</link>
      <description>Hi everyone&lt;BR /&gt;
&lt;BR /&gt;
I've managed to stop it from outputing. I basically wrapped the proc sql step in an exclude all statement.&lt;BR /&gt;
&lt;BR /&gt;
Not as elegant as it could be but it worked so I can't complain.&lt;BR /&gt;
&lt;BR /&gt;
Thanks for all your help.&lt;BR /&gt;
&lt;BR /&gt;
Chris</description>
      <pubDate>Fri, 04 Sep 2009 08:03:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Stopping-proc-tabulate-or-proc-sql-from-dispayling-output-in-ods/m-p/69079#M7941</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-09-04T08:03:16Z</dc:date>
    </item>
  </channel>
</rss>

