If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable? : sas-macro
No Answer is Posted For this Question
Be the First to Post Answer
Why do we use QUIT commmand for proc datasets and proc sql ???
Name statements that are recognized at compile time only?
How would you include common or reuse code to be processed along with your statements?
If you set a label in the data step and call a proc freq on the data, how do you display the data without the labels and just the variables.
Explain what Proc glm does?
what type of graphs we will create(for 2+years candidates)?
What is difference between N and n????
what is SAS ACCESS AND SAS CONNECT ? Give an example and data statements used.
what is ae onset date n what is RDS
/*i have the following dataset.*/ data score; input marks ; datalines; 10 20 30 40 50 60 70 80 90 100 ; run; Now i should get the result as sum of 1 to 5 i.e(10+20+30+40+50)=150 and 2 to 6 i.e(20+30+40+50+60)=200 and 3 to 7 i.e(30+40+50+60+70)=250 and so on. how to get it. thanks in advance
There is a field containing a date. It needs to be displayed in the format “ddmonyy” if it’s before 1975,”dd mon ccyy” if it’s after 1985, and as ‘disco years’ if its between 1975 and 1985. How would you accomplish this in data step code? Using only PROC FORMAT.
Which command is used to perform sorting in sas program?