LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext 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 15:14:48 -0400
Reply-To:     Mike Rhoads <RHOADSM1@WESTAT.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Mike Rhoads <RHOADSM1@WESTAT.COM>
Subject:      Re: ODS PDF concatenated report
In-Reply-To:  <009801c7e681$404b12e0$6601a8c0@RSD0>
Content-Type: text/plain; charset="us-ascii"

FWIW, I am using SP4, and my SAS 9.1.3 is far from pristine, but it produced a one-page report for me as well.

Mike Rhoads Westat RhoadsM1@Westat.com

-----Original Message----- From: owner-sas-l@listserv.uga.edu [mailto:owner-sas-l@listserv.uga.edu] On Behalf Of Rob Rohrbough Sent: Friday, August 24, 2007 3:02 PM To: 'O'Connell, Martin'; SAS-L@listserv.uga.edu Subject: RE: ODS PDF concatenated report

Martin,

Your code worked perfectly under my brand new pristine SAS 9.1.3 install on my XP laptop. Produced only one page. Am I missing something? Perhaps there is something going on with your SAS install. I have not yet installed SP4.

HTH,

Rob

Rob Rohrbough Omaha, NE, USA

> -----Original Message----- > From: O'Connell, Martin [mailto:MOConnell@GEICO.COM] > Sent: Friday, August 24, 2007 12:34 PM > Subject: Re: ODS PDF concatenated report > > That certainly is one possibility, but would get messy as I am reading > from a few datasets. > > -----Original Message----- > From: toby dunn [mailto:tobydunn@hotmail.com] > Sent: Friday, August 24, 2007 1:30 PM > To: O'Connell, Martin ; SAS-L@LISTSERV.UGA.EDU > Subject: RE: ODS PDF concatenated report > > 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 > ==================== > 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.


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