|
可以
ods html close;
options nodate;
title 'Using PROC ODSLIST ITEM Statements';
ods powerpoint file="DefaultStyle.ppt";
ods powerpoint(2) file="PowerpointdarkStyle.ppt" style=powerpointdark;
proc odslist name=Slides store=sasuser.Myexampleslides print;
cellstyle 1 as {fontsize=1cm color=purple fontweight=bold};
item 'Fraud';
item 'Customer Intelligence';
item 'Social Media';
item 'Data Mining';
item 'High-Performance Computing';
item 'Risk';
item 'Data Management';
run;
ods _all_ close;
|