|
Gadi,
I asked this question on the list not too long ago. Strangely, there doesn't
seem to be a way to directly specify double spacing using Proc Report, but
you can simulate it by adding an observation number to your report dataset
and then using it as an order variable and breaking after it in your Proc
Report code:
data work.report;
set sashelp.retail;
obsno=_N_;
run;
proc report data = work.report;
columns sales date year month day obsno;
define obsno / order noprint;
define sales / display;
define date / display;
define month / display;
define day / display;
break after obsno / skip;
run;
HTH,
Sterling Price
-----Original Message-----
From: GADI_B@MALAM.COM [mailto:GADI_B@MALAM.COM]
Sent: Wednesday, June 18, 2003 7:00 AM
Subject: PROC Report - Double spacing
Hi,
How do I tell PROC REPORT to use double spacing it the report?
TIA
Gadi
**********************************************************************
This email and any files transmitted with it are confidential
and intended solely for the individual or entity to
whom they are addressed. If you have received this email
in error destroy it immediately.
**********************************************************************
Wal-Mart Stores, Inc. Confidential
**********************************************************************
|