Features: |
PROC FORMAT statement options: LIBRARY=
LIBRARY libref LOW and HIGH keywords |
Data set: | PROCIB.STAFF |
libname proclib 'SAS-library-1 '; libname library 'SAS-library-2';
options nodate pageno=1 linesize=80 pagesize=40;
proc format library=library;
picture uscurrency low-high='000,000' (mult=1.61 prefix='$'); run;
proc print data=proclib.staff noobs label;
label salary='Salary in U.S. Dollars'; format salary uscurrency.;
title 'PROCLIB.STAFF with a Format for the Variable Salary'; run;