Any ideas why my Header Border works in pdf but not in powerpoint? (or, any ideas what I could do differently to get it to work?)
included stripped down program code.
thanks!
Dave
data test;
input School $ val1 val2;
cards;
A 1 2
B 1 2
;
run;
ods pdf file = 'C:\temp\test.pdf';
ods powerpoint file = 'C:\temp\test.pptx';
ods escapechar = "^";
proc report data=test;
column School ("^{style[borderrightcolor=Black borderrightwidth=8 ] Span}" val1 val2);
define val1/display style=[just=center FONT_SIZE=12pt cellwidth=1.4 cm cellheight=.35 cm borderrightwidth=5];;
define val2/display style=[just=center FONT_SIZE=12pt cellwidth=1.4 cm cellheight=.35 cm borderrightwidth=8 borderrightcolor=Black];;
run;
ods pdf close;
ods powerpoint close;
Thanks Cynthia - i checked with SAS technical support, this was their reply:
This is a known defect for multiple destinations including PowerPoint. It is being addressed in a future release of SAS. Currently there is no work-around for the PowerPoint destination.
Thanks Cynthia - i checked with SAS technical support, this was their reply:
This is a known defect for multiple destinations including PowerPoint. It is being addressed in a future release of SAS. Currently there is no work-around for the PowerPoint destination.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.