LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (August 2007, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Fri, 24 Aug 2007 17:30:23 +0000
Reply-To:     toby dunn <tobydunn@HOTMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         toby dunn <tobydunn@HOTMAIL.COM>
Subject:      Re: ODS PDF concatenated report
Comments: To: MOConnell@GEICO.COM
In-Reply-To:  <BD4DF887B662FD46A3786A2E6547925BD3F678@GP2K0084V3.GEICO.corp.net>
Content-Type: text/plain; format=flowed

Martin ,

Is there some reason that you cannot roll the data _null_ steps together into one step?

Toby Dunn

Two wrongs are only the beginning.

Success always occurs in private and failure in full view.

Experience is something you don't get until just after you need it.

From: "O'Connell, Martin" <MOConnell@GEICO.COM> Reply-To: "O'Connell, Martin" <MOConnell@GEICO.COM> To: SAS-L@LISTSERV.UGA.EDU Subject: ODS PDF concatenated report Date: Fri, 24 Aug 2007 13:26:46 -0400

Hello all,

I'm trying to build a pdf report that is a concatenation of a few data _null_; file report; steps and cannot make the output appear on one page (am getting one per data step). I'm trying to use the STARTPAGE=NEVER option but am not able to make it work. I see a lot of examples using it for proc output but am not seeing any for data step output. My test code is:

ods listing close; ods pdf startpage=never file="myfile.pdf";

data test; x=1; run;

data _null_; file print; set test;

put x; run;

data _null_; file print; set test;

put x; run;

ods pdf close; ods listing;

But this is building a two page report and I need it to be one.

Does anyone know how to make this work?

Thanks for any help.

Martin ==================== This email/fax message is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution of this email/fax is prohibited. If you are not the intended recipient, please destroy all paper and electronic copies of the original message.

_________________________________________________________________ Puzzles, trivia teasers, word scrambles and more. Play for your chance to win! http://club.live.com/home.aspx?icid=CLUB_hotmailtextlink


Back to: Top of message | Previous page | Main SAS-L page