<?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 Unwanted Blank Pages in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Unwanted-Blank-Pages/m-p/546603#M22580</link>
    <description>&lt;P&gt;You might try the NOCONTINUED option on the table statement:&lt;/P&gt;
&lt;PRE&gt;PROC TABULATE
DATA=WORK.COURSE_INFO;
WHERE semesterText IN('FA','SP');

	VAR enrolled wasSuccessful;
	CLASS termOrder /	ORDER=UNFORMATTED MISSING;
	CLASS SUBJECT COURSENUMBER FACNAME /	ORDER=UNFORMATTED MISSING;
	TABLE 
		/* ROW Statement */
		SUBJECT={LABEL=""} * COURSENUMBER={LABEL=""} * FACNAME={LABEL=""},
		/* COLUMN Statement */
		termOrder={LABEL=""} *(wasSuccessful={LABEL=""} * PctSum&amp;lt;enrolled&amp;gt;={LABEL="Success Rate"}*f=comma6.1
			enrolled={LABEL=""} * N={LABEL="Total Class Size"} )
      &lt;STRONG&gt;&lt;FONT color="#0000ff"&gt;/ NOCONTINUED&lt;/FONT&gt;&lt;/STRONG&gt;
         ;
FORMAT TERMORDER TERM.;
RUN;
RUN; QUIT;
TITLE; FOOTNOTE;
&lt;/PRE&gt;</description>
    <pubDate>Wed, 27 Mar 2019 17:17:47 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2019-03-27T17:17:47Z</dc:date>
    <item>
      <title>ODS PDF Unwanted Blank Pages</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Unwanted-Blank-Pages/m-p/546576#M22579</link>
      <description>&lt;P&gt;I have the below code that I am running in Enterprise Guide and when the pdf is exported, it inserts unwanted blank pages that just say "(continued)." Is there something in my code causing this or that I can add that will remove them? It happens are random, and the blank pages vary each time I run the document. I&amp;nbsp;have tried various ODS STARTPAGE controls and it still happens. Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods pdf file="\\PATH\Overall by Departments by Faculty.pdf"
notoc
style=minimal;

options orientation=landscape nodate MISSING=0;

TITLE;
TITLE1 "Overall Department Course by Faculty Success Rate";

FOOTNOTE;
FOOTNOTE1 "Generated by the Office of Institutional Research on %TRIM(%QSYSFUNC(DATE(), NLDATE20.))";


PROC TABULATE
DATA=WORK.COURSE_INFO;
WHERE semesterText IN('FA','SP');

	VAR enrolled wasSuccessful;
	CLASS termOrder /	ORDER=UNFORMATTED MISSING;
	CLASS SUBJECT COURSENUMBER FACNAME /	ORDER=UNFORMATTED MISSING;
	TABLE 
		/* ROW Statement */
		SUBJECT={LABEL=""} * COURSENUMBER={LABEL=""} * FACNAME={LABEL=""},
		/* COLUMN Statement */
		termOrder={LABEL=""} *(wasSuccessful={LABEL=""} * PctSum&amp;lt;enrolled&amp;gt;={LABEL="Success Rate"}*f=comma6.1
			enrolled={LABEL=""} * N={LABEL="Total Class Size"} );;
FORMAT TERMORDER TERM.;
RUN;
RUN; QUIT;
TITLE; FOOTNOTE;

ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2019 16:10:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Unwanted-Blank-Pages/m-p/546576#M22579</guid>
      <dc:creator>laura6728</dc:creator>
      <dc:date>2019-03-27T16:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF Unwanted Blank Pages</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Unwanted-Blank-Pages/m-p/546603#M22580</link>
      <description>&lt;P&gt;You might try the NOCONTINUED option on the table statement:&lt;/P&gt;
&lt;PRE&gt;PROC TABULATE
DATA=WORK.COURSE_INFO;
WHERE semesterText IN('FA','SP');

	VAR enrolled wasSuccessful;
	CLASS termOrder /	ORDER=UNFORMATTED MISSING;
	CLASS SUBJECT COURSENUMBER FACNAME /	ORDER=UNFORMATTED MISSING;
	TABLE 
		/* ROW Statement */
		SUBJECT={LABEL=""} * COURSENUMBER={LABEL=""} * FACNAME={LABEL=""},
		/* COLUMN Statement */
		termOrder={LABEL=""} *(wasSuccessful={LABEL=""} * PctSum&amp;lt;enrolled&amp;gt;={LABEL="Success Rate"}*f=comma6.1
			enrolled={LABEL=""} * N={LABEL="Total Class Size"} )
      &lt;STRONG&gt;&lt;FONT color="#0000ff"&gt;/ NOCONTINUED&lt;/FONT&gt;&lt;/STRONG&gt;
         ;
FORMAT TERMORDER TERM.;
RUN;
RUN; QUIT;
TITLE; FOOTNOTE;
&lt;/PRE&gt;</description>
      <pubDate>Wed, 27 Mar 2019 17:17:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Unwanted-Blank-Pages/m-p/546603#M22580</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-03-27T17:17:47Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF Unwanted Blank Pages</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Unwanted-Blank-Pages/m-p/546662#M22582</link>
      <description>That worked perfectly!! Thank you so much!!</description>
      <pubDate>Wed, 27 Mar 2019 19:51:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Unwanted-Blank-Pages/m-p/546662#M22582</guid>
      <dc:creator>laura6728</dc:creator>
      <dc:date>2019-03-27T19:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: ODS PDF Unwanted Blank Pages</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Unwanted-Blank-Pages/m-p/546672#M22583</link>
      <description>&lt;P&gt;FWIW you don't have to use&lt;/P&gt;
&lt;PRE&gt;SUBJECT={LABEL=""} &lt;/PRE&gt;
&lt;P&gt;to suppress variable labels&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;SUBJECT=' ' &lt;/PRE&gt;
&lt;P&gt;with either single or double quotes, no or one space works fine. I used a space so it was easier to tell that I used two single quotes.&lt;/P&gt;
&lt;P&gt;Which can shorten the code a making it a tad easier to read in my opinion. The var={&amp;lt;stuff&amp;gt;} is more useful if you are using the variable in multiple places and need different style and such settings at each use of a variable.&lt;/P&gt;
&lt;P&gt;And you can override the label by placing text instead of blanks.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2019 20:12:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-PDF-Unwanted-Blank-Pages/m-p/546672#M22583</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-03-27T20:12:50Z</dc:date>
    </item>
  </channel>
</rss>

