Date: Mon, 15 Dec 2008 09:57:13 +0000
Reply-To: karma <dorjetarap@GOOGLEMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: karma <dorjetarap@GOOGLEMAIL.COM>
Subject: Re: withdraw format
In-Reply-To: <f2d8ed3b-8455-4657-84b6-558e335a71f2@b38g2000prf.googlegroups.com>
Content-Type: text/plain; charset=ISO-8859-1
Hi Ash,
You can remove the formats with:
format _all_;
This will work in proc datasets and the datastep.
For your example:
proc datasets lib=work nolist;
modify tata;
format _all_;
quit;run;
or
data TOTO;
set TATA;
format _all_;
run;
HTH
2008/12/15 ash007 <RamsamyAshley@gmail.com>:
> 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.
>
|