1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
%let toto=coucou les amis ;
ods tagsets.excelxp file="jm_test.xls" options(default_column_width="7.5, 7.5, 5, 7.5, 7.5" width_fudge='0.75');
proc report data=sashelp.class nowindows split='*'
style(header)=[color=white background=cornflowerblue fontfamily=calibri
fontstyle=italic fontweight=bold bordercolor=black fontsize=11pt ]
style(column)=[color=black fontsize=10pt bordercolor=black];
column (" &toto." ( blank name sex age height weight)) ;
define blank / display '*' center style={just=c};
define name / display 'Student*Name' center style={just=c};
define sex / display 'Gender*' center style={just=c};
define age / display 'Age*' center style={just=c};
define height / display 'Height*(inches)' center style={just=c};
define weight / display 'Weight*(pounds)' center style={just=c};
run; quit;
ods tagsets.excelxp close;
ods listing; |
Partager