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

Answers were Sorted based on User's Feedback



How would you remove a format that has been permanently associated with a variables?..

Answer / sunymuny

proc datasets;
Modify Employee;/*Dataset name*/
Format lname ;/* Name of variable you want to remove format
from*/
run;

Is This Answer Correct ?    6 Yes 0 No

How would you remove a format that has been permanently associated with a variables?..

Answer / sandeep

proc datasets;
modify <dataset name>;
format <variable name>;
quit;

Is This Answer Correct ?    1 Yes 0 No

How would you remove a format that has been permanently associated with a variables?..

Answer / tangyoulei

proc datasets;
format='';
run;

Is This Answer Correct ?    4 Yes 4 No

Post New Answer

More SAS Interview Questions

What is the order of evaluation of the following operators + - * / ** () ???

2 Answers  


What is interleaving in SAS?

0 Answers  


You need to create an In List that it is to be later used in a Where Clause that includes all the Regions that begin with the letter A from the sashelp.shoes table. Using PROC SQL with an into clause create the following string from the sashelp.shoes table using the variable region “AFRICA”,”ASIA”,…..

3 Answers  


/* To determine the maximum and minimum of V1 */ data before3; input v1 v2 v3; cards; 3 2 1 4 6 5 2 1 3 6 5 4 1 3 2 5 4 6 ; run;

5 Answers  


what is data access? : Sas-di

0 Answers  






how many data types in sas? : Sas-administrator

1 Answers  


Differences between where and if statement?

0 Answers  


Name statements that are execution only?

7 Answers  


how to generate report for 0 observation dataset?

3 Answers   Mind Tree, Student,


Difference between sum function and using “+” operator?

0 Answers  


What is the good sas programming practices for processing large data sets?

0 Answers  


name some data transformation used in sas di? : Sas-di

0 Answers  


Categories