what is the difference between %put and symbolgen?

Answer Posted / cutepa1

Mallikarjun is exactly correct that symbolgen is just an
option and cant be used within statements.

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the advantages of using sas?

598


What can you learn from the SAS log when debugging?

908


How would you determine the number of missing or nonmissing values in computations?

641


what is SAS OPTIMIZATION?

1809


In SAS explain which statement does not perform automatic conversions in comparisons?

790






What is interleaving in SAS?

660


What is the difference between class statement and by statement in proc means?

634


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.

1787


How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?

2373


how to change the execute of macro

1659


what has been your most common programming mistake? : Sas programming

550


Explain why double trailing @@ is used in input statement?

563


How do you specify the number of iterations and specific condition within a single do loop?

611


What are the difference between the sas data step and sas procs?

596


How sas treats the dsd delimiters?

708