Online File
Rick Aster: Professional SAS Programming Shortcuts: Contents
PROC DATASETS LIBRARY=CORP NOLIST; MODIFY NEWHIRE; IC CREATE BORN=CHECK(WHERE=(DOB < DATE())) MESSAGE='Birth date must be before today.'; IC CREATE EST_HIRE=CHECK(WHERE=(HIREDATE >= '01JAN1989'D)) MESSAGE='Hire date is missing or is too early.'; RUN;