Hi, I am moving a system to 9.2. In 8.2 the code calls proc calendar, the report prints with 7 lines vertically in each day. In SAS 9.2 the same code prints as few as 4 lines. I can get more lines to print by messing with the pagesize, (From 50 to 60 gets more vertical lines.) I tried adding Missing, I've looked for another option to help.
Anyone have an idea? I get the message some activities are obscured.
PROC CALENDAR SCHEDULE FILL HEADER=SMALL DATA=FINALCAL ;
ID ESTSTART;
VAR DESCRIPT NPROJ INITIAL;
DUR ESTDAYS;
TITLE 'SCHEDULE CALENDAR ';
RUN;
Thanks,