what is the difference between %put and symbolgen?
Answer Posted / mallikarjuna reddy.vanna
besides all the above answers, we can also say that by using
%put we can get values of specified macro variables, where
as by using symbolgen we can get the values of all the macro
variables with in a program.
%put is a macro language program statement, like %put and
%macro. symbolgen is an option.
| Is This Answer Correct ? | 12 Yes | 0 No |
Post New Answer View All Answers
Differentiate between proc means and proc summary.
Explain the special input delimiters used in sas programming.
what are the categories that sas informats are used to the place the data? : Sas-administrator
what can you learn from the sas log when debugging? : Sas programming
What is the difference between proportion and average?
describe how to adjust the performance of data integrator? : Sas-di
how could you generate test data with no input data? : Sas programming
What are the data types in sas?
What is the use of the %include statement?
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 cause the "error: connect:" and "error in the libname statement" when there weren't any such problems?
how to create the AE dataset by using SDTMIG specifications and SAP plan by using UNIX platform?
Explain how you can debug and test your SAS program?
what is null hypothesis? why do you consider that?
what is sas data set?