Date: Mon, 15 Dec 2008 01:59:45 -0800
Reply-To: RolandRB <rolandberry@HOTMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: RolandRB <rolandberry@HOTMAIL.COM>
Organization: http://groups.google.com
Subject: Re: withdraw format
Content-Type: text/plain; charset=ISO-8859-1
On 15 Dez., 09:46, ash007 <RamsamyAsh...@gmail.com> wrote:
> Hello,
>
> Is someone know how to remove the format with a proc dataset - a pgm
> which will working like this :
>
> DATA TOTO;
> SET TATA;
>
> FORMAT
> VAR1
> VAR2
> VAR3
> VAR4
> VAR5
>
> ;
> RUN;
>
> Thanks.
>
> ash007.
Yes, just don't put a format after it in a format statement like this:
format VAR1 ;
|