Hi all,
There is any simple way to use a Microsoft Powerpoint default theme in ODS POWERPOINT? For example, in Microsoft Powerpoint 2013 there is a theme template called "Facet". I'd like to generate a report in SAS EG using this theme.
I'd tried the following code, but off course is not working as expected:
ods powerpoint file="Test.pptx" style=facet;
proc freq data=sashelp.class;
tables sex;
run;
ods powerpoint close;
Because theme "facet" is not located, when open the file generated the theme used is ODS Light. Please, see the example file attached.
Thanks,
STYLE in a SAS ODS destination statement will refer to a SAS ods style.
You could create a SAS style using the current PowerPointLight as a parent and set some of the elements that SAS creates, fonts, fontweights, graphic options and such. However I doubt it that the ODS PowerpointLight style has all of the options that are in a PowerPoint theme.
Which specific features do you want? Note: "Everything" is likely not to fly.
Hi @ballardw,
I'm looking for exactly the same template, font size and colours, background imagens, etc.
I know that is possible to define/create the style inside SAS but I was looking any option to use an existing theme (from MS Powerpoint for exemple) without recreate it on SAS.
Regards,
If you can save a PPT file with the theme you want, but as a webpage you should get an htm file. If you look at the file the top portion should have the CSS components. I *think* SAS Style Designer can use that portion to create a style within SAS, but not sure if the names are the same, I suspect they're not.
I don't have the time (or access to SAS Style designer at the moment) to test this approach, but it shouldn't take too long to test it yourself. Worst case scenario, you can use the Style Designer to modify the styles you need via point and click if you want to avoid coding it out.
If there's no option, you should add this to the Idea's section so that SAS can consider it for future releases.
Hi all,
There is any simple way to use a Microsoft Powerpoint default theme in ODS POWERPOINT? For example, in Microsoft Powerpoint 2013 there is a theme template called "Facet". I'd like to generate a report in SAS EG using this theme.
I'd tried the following code, but off course is not working as expected:
ods powerpoint file="Test.pptx" style=facet;
proc freq data=sashelp.class;
tables sex;
run;
ods powerpoint close;
Because theme "facet" is not located, when open the file generated the theme used is ODS Light. Please, see the example file attached.
Thanks,
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.