
| Features: |
PROC FORMAT statement:: VALUE |
| Other features: |
PROC PRINT statement:: VAR statement STYLE option |
proc format library=library;
value color
low-'31DEC1999'd='green'
'01JAN2000'd-high='red';
run;
proc print data=proclib.staff noobs;
var name idnumber;
var hiredate / style={background=color.};
title 'PROCLIB.STAFF Using the COLOR. Format'
run;