Chapter Contents |
Previous |
Next |
The CALENDAR Procedure |
Procedure features: |
|
Program |
data vac; input hdate:date7. holiday $ 11-25 _CAL_ $ ; datalines; 29JUL96 vacation CAL2 04JUL96 Independence CAL1 ; |
proc sort data=allacty2; by date; run; |
options nodate pageno=1 pagesize=60 linesize=132; |
proc calendar data=allacty2 holidata=vac; |
calid _CAL_ / output=combine; |
start date ; dur long; |
holistart hdate; holivar holiday; title1 'Summer Planning Calendar: Julia Cho'; title2 'President, Community Bank'; title3 'Work and Home Schedule'; run; |
Output |
Schedule Calendar Containing Multiple Calendars
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.