Returns the current date as a numeric SAS date value.
data _null_; tday=today(); if (tday-datedue)> 15 then do; put 'As of ' tday date9. ' Account #' account 'is more than 15 days overdue.'; end; run;