Chapter Contents |
Previous |
Next |
The FORMAT Procedure |
Procedure features: |
| ||||||||||
Data set: |
|
Program |
libname proclib 'SAS-data-library-1 '; libname library 'SAS-data-library-2'; |
options nodate pageno=1 linesize=80 pagesize=40;
proc format library=library; |
picture uscurr 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 uscurr.; title 'PROCLIB.STAFF with a Format for the Variable Salary'; run; |
Output |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.