Advertisement
pungitore_33

Untitled

Nov 27th, 2020
1,640
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SAS 0.24 KB | None | 0 0
  1. DATA STATS.ifthenTECHDOC;
  2. SET STATS.filteredTECHDOC;
  3.     FORMAT POS $UPCASE2.;
  4.     IF POS="QB" THEN DELETE;
  5.     IF POS="WR" THEN DELETE;
  6.     IF POS="TE" THEN DELETE;
  7.     IF ATT>=40 THEN POS="RB";
  8.     IF ATT<40 THEN DELETE;
  9.     IF POS=" " THEN DELETE;
  10. run;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement