How would you remove a format that has been permanently
associated with a variable?
________________
Answer Posted / sonu
proc datasets library=<library name where the dataset has been stored>;
modify <dataset name>;
format <variable name>;
run;
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
why is sas considered self-documenting? : Sas programming
how does sas handle missing values in procs? : Sas programming
What is program data vector (pdv) and what are its functions?
Explain the difference between using drop = data set option in set and data statement?
Mention what is SAS data set?
What is the difference between input and infile statement?
What are the differences between proc means and proc summary?
What are types of transport files?
How you can read the variables that you need?
What are the different operating system platforms in which we can use sas? : sas-grid-administration
what is star schema? : Sas-di
What is the order of application for output data set options, input data set options and SAS statements?
What do the sas log messages “numeric values have been converted to character” mean? What are the implications?
Difference between informat and format?
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming