求助:
现有我自己写的程序,不知道为何不能在sas 的output中看到第二页。
程序:data mnthly_sales; 
length zip $ 5 cty $ 8 var $ 10;
input zip $ cty $ var $ sales;
label zip= 'Zip Code'
cty='County' 
var='Variety'
sales='Monthly Sales'; 
datalines; 
52423 Scott Merlot 186. 
52423 Scott Chardonnay 156.61 
52423 Scott Zinfandel 35.5 
52423 Scott Merlot 55.3 
52388 Scott Merlot 122.89 
52388 Scott Chardonnay 78.22 
52388 Scott Zinfandel 15.4 
52200 Adams Merlot 385.51
52200 Adams Chardonnay 246
52200 Adams Zinfandel 151.1
52200 Adams Chardonnay 76.24
52199 Adams Merlot 233.03
52199 Adams Chardonnay 185.22
52199 Adams Zinfandel 95.84
; 
run;
title 'cross tab report';
proc report data=mnthly_sales  headline split='|';
 column cty zip var,sales;
 define sales/analysis width=20 "Revenue" ;
 define cty/group 'County|Name';
 define zip/group 'zip|code';
 define var/across width=10 "-Grape Variety-";
 break after cty/page;  
 break after zip/skip;  
run;
想要的结果如下图所示,但是要求每个图片各占一页,我的sas output中只能看到第一页,看不到第二页。请问上述的程序如何调整才能实现,谢谢。