hello everyone
I am new in SAS
please help me
how I can use summation of variables in SAS like in the attached file?.
Something like
data have; input x; datalines; 4 5 6 ; data want; set have; retain sum 0; sum + ((x - 3) / (x ** 2 - x)); run;
?
View solution in original post
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest Updates
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.