January 2018
Beginner to intermediate
582 pages
25h 3m
English


data test2;
set sasuser.furnture;
if finish='oak';
if price<100 then delete;
TotalPrice+price;
drop price;
run;
proc print data=test2 noobs;
run;
data test2;
set sasuser.furnture;
if finish='oak' and price<200;
TotalPrice+price;
drop price;
run;
proc print data=test2 noobs;
run;
data test2; set sasuser.furnture; if finish='oak' and price<200 ...
Read now
Unlock full access