Hi,
I make an xls file with ods tagsets.excelxp.
I would like to modify the size of the text printed by the statements :
title, title2 and title3.
Is it possible ?
Thanks.
ods listing close;
ods noproctitle;
title "title1";
title2 "title2";
title3 "title3";
ods tagsets.excelxp file="C:\toto.xls" style=seaside
options( embedded_titles='yes'
embedded_footnotes='yes'
Center_Horizontal = 'yes'
Center_Vertical = 'yes'
contents='no'
index='no'
sheet_interval='none'
orientation='portrait'
FitToPage = 'yes'
Absolute_Column_Width='15'
Autofit_Height = 'YES'
Pages_FitWidth = '1'
Pages_FitHeight = '3000'
Print_Footer='&E SERVICE, &J &C Audit v1.0 &D Pages &P sur &T'
)
;
proc freq data=sashelp.cars; tables model; run;
ods tagsets.excelxp close;
ods listing;