How would you remove a format that has been permanently
associated with a variables?
Answer Posted / 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 |
Post New Answer View All Answers
What is data _null_?
This entry was posted in General. Bookmark the permalink. Post a comment or leave
for report generation which one you used proc report or data_null_?
data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.
What do you know about sas and what we do? : sas-grid-administration
If a variable contains letters or special characters, can it be numeric data type?
explain the function of substr in sas? : Sas-administrator
please can you tell me that in companies sas work are doing by through sas coding or sas wizard ??
Differentiate between sas functions and sas procedures.
What are the different operating system platforms in which we can use sas? : sas-grid-administration
Explain data_null_?
what are the new features included in the new version of sas i.e., Sas 9.1.3? : Sas programming
where to use sas business intelligence? : Sas-bi
why is sas data integration studio important? : Sas-di
Explain why double trailing @@ is used in input statement?