What is the difference Using & and && in the macro variables
Answer Posted / alla
when concatinating two macro variable
%let a=sai;
%let b=kumar;
%let &a &b;it resolves as sai kumar
if u want to remove the space b/t then use
%let &&a&b; it resolves as saikumar
when you use %let &a&b;resolves as &akumar
| Is This Answer Correct ? | 2 Yes | 6 No |
Post New Answer View All Answers
What’s the difference between var b1 – b3 and var b1 — b3?
What is the difference between using drop = data set option in data statement and set statement?
which date functions advances a date time or date/time value by a given interval? : Sas programming
what are the best practices to process the large data sets in sas programming? : Sas-administrator
Give some examples where proc report’s defaults are different than proc print’s defaults?
What are the best sas programming practices for handling very large datasets? : sas-grid-administration
What is your favorite all time computer book? Why?
How do you define proc in sas? : sas-grid-administration
why is sas data integration studio important? : Sas-di
What is a pdv and what are its functions?
: and & modifiers.
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 sas business intelligence? : Sas-bi
how to remove duplicates using proc sql?
name several ways to achieve efficiency in your program? : Sas programming