Date: Mon, 17 Mar 2008 16:02:21 -0400
Reply-To: Fatoš US <fatosus@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Fatoš US <fatosus@GMAIL.COM>
Subject: printing rtf
Content-Type: text/plain; charset=ISO-8859-1
I have a question about a printing job that. I am using the codes below to
get one patient record per page:
ods rtf file='C:\new.rtf';
*
proc* *print* ;
by birth_certif;
pageby birth_certif;
*
run*;
ods rtf close;
*
run*;
It is printing one record per page but I cannot get the variables/values
printed vertically. I'd like to see the variables printed vertically
(leaving one line in between each var, if possible). How can i print one
record per page and the info will be printed vertically instead of
horizontally?
I'd appreicate any help.
|