Late
data loans.overdue; set finance.loans; if datedue>60 then do; Late+janlate; note='Late'; else note='OK'; end; run;
data loans.overdue; set finance.loans; if datedue>60 then do; Late+janlate; note='Late'; end; else note='OK'; run;
data loans.overdue; set finance.loans; if datedue>60 then do; JanLate+late; note='Late'; end; else note='OK'; run;
Copyright © 2002 SAS Institute Inc., Cary, NC, USA. All rights reserved.