% let A=3+4 what is result
Answers were Sorted based on User's Feedback
%let a=%eval(3+4);
%put &a;
answers is : 7
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / narendra
%let A=3+4;
%put &a;
Answer is 3+4.
If you do like this
%let a=%eval(3+4);
%put &a;
Then answer is 7
| Is This Answer Correct ? | 3 Yes | 0 No |
please can you tell me that in companies sas work are doing by through sas coding or sas wizard ??
How to create an external dataset with sas code?
What can you learn from the SAS log when debugging?
How would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable?
Name some categories in sas 9? : sas-grid-administration
How to get any kind of data in SAS? Is it possible to take data from notepad in SAS?
If you were told to create many records from one record show how you would do this using arrays and with PROC TRANSPOSE?
where will go the observations that were deleted by delete statement?
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 are the best practices to process the large data sets in sas programming? : Sas-administrator
List out some key concept of SAS
How substr function works in sas?