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
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.
Explain what Proc glm does?
Enlist the syntax rules followed in sas statements.
what do the sas log messages "numeric values have been converted to character" mean? What are the implications? : Sas programming
What would you change about your job?
What is maximum storage capability of SAS?
How to convert a numeric variable to a character variable?
Give an example where SAS fails to convert character value to numeric value automatically?
what are some differences between proc summary and proc means? : Sas programming
How do you test for missing values?
What is a pdv and what are its functions?
What is the good sas programming practices for processing large data sets?
What is the use of divide function?
What are the ways in which macro variables can be created in sas programming?
What are the table names in oracle database...?