% 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 |
How can you put a "trace" in your program?
If reading a variable length file with fixed input, how would you prevent SAS from reading the next record if the last variable didn?t have a value?
how to read raw data in sas. Do it manually and throw the programming.
what is sas? is a package or tool? give me introduction about sas?
how to generate the test data in sas without input data? : Sas-administrator
name some data transformation used in sas di? : Sas-di
What is the one statement to set the criteria of data that can be coded in any step?
I need help in merging two different datasets. I am merging by date and I want to propagate observations from one dataset to the corresponding dates. One dataset has a unique date for each day of the month, while the other dataset has same date for different patient visits. For example I want to spread an observation on the 31DEC2008 from one dataset to several observations with the same date on a second dataset for all the patients who visited on that date. I have tried to merge the two and the result is not what I wanted. Instead I get a dataset whereby all the dates have missing values where observations from the first datset should have spread.
Differentiate between proc means and proc summary.
how to change the execute of macro
Do you use PROC REPORT or PROC TABULATE? Which do you prefer? Explain.
How would you include common or reuse to be processed along with your statements?