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

What is the SAS data set?

675


What is SAS? What are the functions does it performs?

729


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

613


Explain translate function?

630


What is the command used to find missing values?

590






Define run-group processing?

580


Which are the statements whose placement in the data step is critical?

758


what are the considerations when picking a SAS/STAT procedure?

2896


Name and describe few sas character functions that are used for data cleaning in brief.

662


What are the different types of sas functions?

606


how does sas handle missing values in sort order? : Sas programming

528


how can you create zero observation dataset? : Sas programming

632


how many types prompting framework can be broken down to? : Sas-bi

626


What function CATX syntax does?

689


How would you determine the number of missing or nonmissing values in computations?

646