How would you remove a format that has been permanently
associated with a variables?
Answer Posted / sandeep
proc datasets;
modify <dataset name>;
format <variable name>;
quit;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
If money were no object, what would you like to do?
what are 5 ways to perform a table lookup in sas? : Sas-administrator
What does P-value signify about the statistical data?
Name and describe few sas character functions that are used for data cleaning in brief.
how does sas handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, procs? : Sas programming
What are the data types does SAS contain?
how the sas basic syntax style described? : Sas-administrator
What is a method for assigning first.VAR and last.VAR to the BY group variable on unsorted data?
how to remove duplicates using proc sql?
How to create an external dataset with sas code?
Explain the main difference between the sas procedures and functions? : Sas-administrator
Why and when do you use proc sql?
Explain how merging helps to combine data sets.
How would you determine the number of missing or nonmissing values in computations?
if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...