- %let text=百分比(%);
- proc report data=sashelp.class nowindows missing split = "#" headline;
- column name;
- define name /display style(column)={just=l vjust=b cellwidth=20.5% }
- style(header)={just=c vjust=b} "姓名";
- compute after _page_;
- /* line "百分比(%)";*/
- /* line '百分比(%)';*/
- /* line "&text.";*/
- /* line '&text';*/
- line "%nrstr(&text.)";
- endcomp;
- run;