What is the difference Using & and && in the macro variables
Answer Posted / srk
there is nothing difference b/w & and && for resolving
macros both are same..these are two types of syntax for
resolving macro variable.
| Is This Answer Correct ? | 1 Yes | 12 No |
Post New Answer View All Answers
What’s the difference between var b1 – b3 and var b1 — b3?
What is the use of %include statement?
What is the differnce between SDTM 3.1.2 to 3.1.1 version
if you were told to create many records from one record, show how you would do this using array and with proc transpose? : Sas programming
what is function of retain statment
What are the functions used for character handling?
i have a dataset with 100 obs i want to generate title from 20th obs onwards with total observations. that should contain 100 obs.dont use firstobs and dnt split the data. use dataset block or proc report? how can we genarate;
What is the difference between INPUT and INFILE ?
what are the categories that sas informats are used to the place the data? : Sas-administrator
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 is the use of proc sql? : Sas programming
What is the basic structure of a sas program?
Compare sas with other data analytics tools.
What is data _null_?
describe about metadata object? : Sas-di