Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How would you remove a format that has been permanently
associated with a variable?
________________

Answer Posted / lakshmi

1. To remove formats permenantly then use this code in data
step,

data data2;
set data1;
format _all_; /* To remove format */
informat _all_; /* To remove informat */
run;

2. To remove formats permenantly then use this code in proc,
proc sort data=data1;
by subject;
format _all_;
run;

Is This Answer Correct ?    6 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

I am preparing SAS Certified Advanced Programmer for SAS 9 in 2014. If anybody has the latest dumps for this exam, please mail me at dhiman.mukherjee@gmail.com

2772


what are some good sas programming practices for processing very large data sets? : Sas programming

973


Mention what is SAS data set?

1177


explain the difference between alternate key, business key, foreign key, generated key, primary key, retained key and surrogate key ? : Sas-di

1142


how to create the AE dataset by using SDTMIG specifications and SAP plan by using UNIX platform?

2806


Can you execute macro within another macro? If so, how would sas know where the current macro ended and the new one began? : sas-macro

1261


Explain substr function?

1163


What does PROC print, and PROC contents do?

1277


How do you test for missing values?

1690


Explain the use of proc gplot? : sas-grid-administration

1042


How to specify variables to be processed by the freq procedure?

1117


what is data access? : Sas-di

1178


What is SAS informats?

1163


how to read the variables in sas? : Sas-administrator

1070


Which function is used to count the number of intervals between two sas dates?

1192