Chapter Contents |
Previous |
Next |
The CALENDAR Procedure |
Procedure features: |
| ||||||||||||
Other features: |
|
Program |
data hol; input date : date7. holiday $ 11-25 holilong @27; datalines; 05jul96 Vacation 3 04jul96 Independence 1 ; |
proc sort data=allacty; by date; run; |
options nodate pageno=1 linesize=132 pagesize=60; |
proc calendar data=allacty holidata=hol weekdays; |
start date; dur long; |
holistart date; holivar holiday; holidur holilong; title1 'Summer Planning Calendar: Julia Cho'; title2 'President, Community Bank'; run; |
Output |
Schedule Calendar: 5-Day Week with Holidays
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.