Hot to suppress characters from a given string?
Answer Posted / manoj
Compress(var,'a');
Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
Mention sas system options to debug sas macros.
Tell e how how dealt with..
explain the difference between proc means and proc summary?
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.
describe about metadata object? : Sas-di
What is PROC in SAS?
How to limit decimal places for variable using proc means?
What can you learn from the SAS log when debugging?
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
What are the 3 components in sas programming?
Hi, Does anybody has lastest SAS certification(base, adv., clinical)dumps,if anybody has please email me at mailtorajani76@gmail.com. Thanks
how to read the variables in sas? : Sas-administrator
What is the basic structure of the SAS base program?
In proc transpose and data step with arrays which one you pick?
Enlist the functions performed by sas.