Did you used proc test? when?
No Answer is Posted For this Question
Be the First to Post Answer
· What are some good SAS programming practices for processing very large data sets?
Explain the message ‘MERGE HAS ONE OR MORE DATASETS WITH REPEATS OF BY VARIABLE’.
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?
Do you use PROC REPORT or PROC TABULATE? Which do you prefer? Explain.
What commands are used in the case of including or excluding any specific variables in the data set?
How sas treats the dsd delimiters?
how do the in= variables improve the capability of a merge? : Sas programming
What is the difference between order and group variable in proc report?
/*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
what is sas and what are the functions? : Sas-administrator
my problem is to export my report to xsl.i can do that.but the problem is my report has 3 headings first heading should be printed with the merging of (1-5)cells and heading 2 should be of merge(2-4)cells?how to do this condition?
Why double trailing @@ is used in input statement?