Hi,
I was creating a template for my rtf table.
*Define a location for my template ;
*-----------------------------------------------------;
libname templ 'mydrive\template';
*Define a new style;
*-----------------------------;
proc template;
define style temp1/store=templ.temp1;
parent=style.rtf;
style fonts /
'docFont'=("<MTserif>,courrier new", 8 pt);
end;
run;
*Create output;
*-------------------------;
ods path (prepend) templ (read);
ods listing close;
ods rtf file='mydrive\all.rtf' style=temp1;
proc report data=sashelp.class nowd ;
column name sex age;
define name/display;
define sex/display;
define age/display;
run;
ods rtf close;
ods listing;
Despite that the code seems to execute correctly and indeed the font change, has been implemented , I yet have two warnings in the logs :
WARNING: Could not restore referenced object: style.rtf.
WARNING: Could not find parent template: style.rtf.
Any clue why I do get those warning ?
Regards
saskap
I could be because of the typo on:
parent = Styles.RTF;
note the final s.
I could be because of the typo on:
parent = Styles.RTF;
note the final s.
Thanks RW9 !
It resolved the issue, no warnings..!
saskap
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.