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
What are the ways in which macro variables can be created in sas programming?
How substr function works in sas?
What is SAS? What are the functions does it performs?
what is sas data set?
I need level 2 to 5 sas using companies in india
what is change analysis in sas di ? : Sas-di
what can you learn from the sas log when debugging? : Sas programming
What is the use of PROC gplot?
How do you control the number of observations and/or variables read or written? Approximately what date is represented by the SAS date value of 730?
What is the basic syntax style in SAS?
How many ways to overcome a missing values???
What is the use of function Proc summary?
What will calendar procedure do?
how many types prompting framework can be broken down to? : Sas-bi
Explain proc sort?