December 2014
Intermediate to advanced
858 pages
40h 10m
English
title "Total Sales for 2002"; data perm.sales2002; set perm.sales; if year(enddate)=2002; run; proc print data=perm.sales2002; run;Then, you might need to change the references in your program in order to reference a different variable, data set, or text string. Especially if your programs are lengthy, scanning for specific references and updating them manually can take a lot of time, and it is easy to overlook a reference that needs to be updated.
title "Total Sales for 2001"; data perm.sales2001; set perm.sales; if year(enddate)=2002; run; proc print data=perm.sales2001; run;
Read now
Unlock full access