How do you add a number to a macro variable?
Answers were Sorted based on User's Feedback
Answer / hsong001
Use %eval to do simple calculation for macro variables.
e.g.,
data _null_;
%let a = 1;
%let b = %eval(&a+1);
%put a=&a b=&b;
run;
| Is This Answer Correct ? | 9 Yes | 0 No |
what is intially documentation for a sas programmer?
Diff between proc sql merge and join?
is data integration and etl programming is same? : Sas-di
Where do the database management systems store data and how do u import them.
How experienced are you with customized reporting and use of Data _Null_ features?
What will calendar procedure do?
What is the basic structure of a sas program?
Hi all, If Anybody has Advance SAS Certification dumps??? Please share with me. Email: pramod.kalugade03@gmail.com
If you could design your ideal job, what would it look like?
i have a data set with 20 observations i want label from 8 to 15 observations ? how you create this one.
if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...
how can you improve the performance of a query, If it is excuting very slowly?