| Date: | Thu, 30 May 1996 20:19:30 GMT |
| Reply-To: | Jack N Shoemaker <shoe@WORLD.STD.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU> |
| From: | Jack N Shoemaker <shoe@WORLD.STD.COM> |
| Organization: | The World Public Access UNIX, Brookline, MA |
| Subject: | Re: Converting SAS Dataset to O/S File |
| In-Reply-To: | Mike Durbin's message of Fri, 17 May 1996 11:09:12 CST |
|---|
Or, you could try a user-defined format. For example:
proc format;
value nice
. = '00000000'
other = |best8.|;
run;
data _null_;
put number nice8.;
run;
The trick is to tack on your desired format for missing
to a standard SAS format, in this case BEST8., but it
could be anything.
Good luck. - Jack
--
Jack N Shoemaker shoe@world.std.com
|