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
Dive into keynotes, announcements and breakthroughs on demand.
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.