Date: Mon, 2 Oct 2000 11:24:58 -0400
Reply-To: barrere Bendia <bendiabare@NETSCAPE.NET>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: barrere Bendia <bendiabare@NETSCAPE.NET>
Subject: Creating a file with extention ".pdf"
Content-Type: text/plain; charset="us-ascii"
Hi there.
I wante juste create a file with extention ".pdf". Is the following right?
options sysprint='D:\sas\adobetest.pdf' 'Acrobat PDFWriter';
filename pdf printer;
data _null_;
file pdf print notitles;
array red{30} $ red1-red30;
do j=1 to 30;
do i=1 to 30;
red{i}=i;
end;
put @1 red1 @7 red2 @13 red3 @19 red4 @25 red5 @31 red6 @37 red7;
end;
run;
IT DOESN'T WORK.
THANKS A LOT.
|