Date: Tue, 30 Jul 1996 10:32:26 -0500
Reply-To: Morgan Wise <mwise@SYNERGY.NET>
Sender: "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From: Morgan Wise <mwise@SYNERGY.NET>
Organization: Trilogy Consulting Corp.
Subject: Re: importing SAS output into MS Word
Timothy Pi wrote:
>
> Hi all,
>
> I use DEC workation to run my SAS programs and
> save XXX.lst file in a floppy disk and then
> incoporate the XXX.lst file which is an ASCII
> file into Microsoft Word file.[Deleted]
> Any suggestions?
All the suggestions regarding non-proportional fonts are fine, but what if you
want to
use a proportional font in MSWord? The idea here is to focus on what is
separating the
columns in your table. If you use tabs, you can easily convert the imported
text into a
MSWord table. Once you have this, it is easy to "beautify" the table to your
hearts
content.
An easy way to do this is with a data step, as follows:
filename out 'c:\output.txt';
data _null_;
data source;
file out;
put name '09'x id '09'x height;
run;
The '09'x is the hex code for tabs in ASCII.