返回列表 发帖
Try this...

step 1, read the data set
step 2,

DATA newdata
SET yourdata;
RETAIN sum 0 number;
sum = sum + number;
OUTPUT;
newnumber = sum;
RUN;

Hopefully, this is helpful~~

TOP

返回列表