What is the significance of the ‘OF’ in X=SUM (OF a1-a4,
a6, a9);?

Answer Posted / rammohan

sum function adds from a1 a2 a3 a4 a6 and a9
i.e x=a1+a2+a3+a4+a6+a9

Is This Answer Correct ?    8 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

I have a dataset concat having variable a b & c. How to rename a b to e & f?

583


Mention the validation tools used in SAS?

658


what do you mean by data staging area? : Sas-di

607


please can you tell me that in companies sas work are doing by through sas coding or sas wizard ??

1668


What is program data vector (pdv)?

637






What is connection profile? : sas-grid-administration

654


What is the maximum length of the macro variable?

680


What are the prime responsibilities of data integration administrator? : Sas-di

591


What is the difference between match merge and one to one merge?

695


Describe the function and untility of the most difficult SAS macro that you have written.

1566


Of all your work, where have you been the most successful?

4207


data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.

1803


How to test the debugging in sas?

612


What is the difference between proportion and average?

2762


What is the difference between where and if statement?

624