Hi, Thanks for your contribution. This is my SAS code what I am trying to run. I don't really see a problem with set statement here. proc import out = triss1 datafile = "/home/srawanisarkar0/sasuser.v94/triss1.csv" DBMS = csv replace; getnames = yes; run; data trs1; set triss1; run; proc means data = trs1; var gcstot; data trs2; set trs1; keep inc_key gcstot; run; data trs2; gcs = gcstot*2; run; Regards, shr
... View more