Multiple Schedule Calendars with Atypical Work Shifts (Combined and Mixed Output)
Multiple Schedule Calendars with Atypical Work Shifts (Combined and Mixed Output)
Multiple Summary Calendars with Atypical Work Shifts (Separated Output)
When INTERVAL=DAY and you have no CALEDATA= data set, specifying a DAYLENGTH= value has no effect.
Instead of specifying the DAYLENGTH= option, you can specify the length of the working day by using a D_LENGTH variable in the CALEDATA= data set. If you use this method, then you can specify different standard day lengths for different calendars.
Formatting Characters in PROC CALENDAR Output illustrates their use in PROC CALENDAR output.
formchar(12 13)='*-'
+=================ACTIVITY===============+
*------------------ACTIVITY--------------*
x
after the closing
quotation mark. For example, the following option assigns the hexadecimal
character 2-D to the third formatting character, the hexadecimal character
7C to the seventh character, and does not alter the remaining characters: formchar(3,7)='2D7C'x
The WEEKDAYS option automatically sets the INTERVAL= value to WORKDAY.
proc calendar weekdays; start date; run; proc calendar interval=workday; start date; outstart monday; outfin friday; run;
Multiple Schedule Calendars with Atypical Work Shifts (Combined and Mixed Output)