How would you remove a format that has been permanently
associated with a variables?
Answers were Sorted based on User's Feedback
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 |
Answer / sandeep
proc datasets;
modify <dataset name>;
format <variable name>;
quit;
| Is This Answer Correct ? | 1 Yes | 0 No |
Can you excute a macro within a macro? Describe.
I need help in merging two different datasets. I am merging by date and I want to propagate observations from one dataset to the corresponding dates. One dataset has a unique date for each day of the month, while the other dataset has same date for different patient visits. For example I want to spread an observation on the 31DEC2008 from one dataset to several observations with the same date on a second dataset for all the patients who visited on that date. I have tried to merge the two and the result is not what I wanted. Instead I get a dataset whereby all the dates have missing values where observations from the first datset should have spread.
If you have a data set that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variable?
Is it possible to do sorting tranformation in charecter variable??if can tell me one eg..
Why is a STOP statement needed for the point=option on a SET statement?
Where do the database management systems store data and how do u import them.
hi i date is 05sep2005; i want the oupput like 05sep2005:00:00:00 ; how it wil come?
what can you learn from the sas log when debugging? : Sas programming
Can you use a macro within another macro? If so how would SAS know where the current acro ended and the new one began?
what is the diff b/w verification validation in sas
What is program data vector (pdv)?
what has been your most common programming mistake? : Sas programming