LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (December 2008, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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
Comments: To: ash007 <RamsamyAshley@gmail.com>
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. >


Back to: Top of message | Previous page | Main SAS-L page