how can u convert this 25-jul-2010 from numeric to charcter?
Answer Posted / madhu
put(Variablename,date11.)
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What commands are used in the case of including or excluding any specific variables in the data set?
Have you used macros? For what purpose you have used? : sas-macro
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.
How do you test for missing values?
What is the difference between %local and %global? : sas-macro
what is the Population you used in your project, is it ITT or PP?
What is maximum storage capability of SAS?
Mention what is the difference between nodupkey and nodup options?
What can you learn from the SAS log when debugging?
What does PROC print, and PROC contents do?
What areas of SAS are you most interested in?
How do you delete duplicate observations in sas?
Differentiate between format and informat? : sas-grid-administration
In ARRAY processing, what does the DIM function do?
What is SAS? What are the functions does it performs?