I created a template for style;
proc template;
define style Styles.JHTitle;
parent = styles.statictical;
replace colors/
'titlebg' = "5A5D62"
'titlefb' = "#000000";
end;
run;
quit;
ods tagsets.excelxp file = "output" style = JHTitle;
proc print data = rwork.totals;
Title "test color";
Title1 "Color test";
run;
ods tagsets.excelxp close;
When I open the file up in Excel I get a message that says there is a problem with style.
Did I miss something in coding? Or is there more I have to do?
Thank you so much for any help,
Mic
Should 'titlebg' be "#5A5D62"? That is, shouldn't the hex digits be preceded with a #, like "titlefb"?
Hi:
I agree with Tim. The color definition should start with either 'CX' -- CX5A5D62 or should start with # as in #5A5D62.
Also, depending on your version of SAS, you either have the incorrect usage of the REPLACE statement. If you are running in SAS 9.1.3, then you would have to respecify the ENTIRE colors element list in order to correctly use the REPLACE statement. If you are using SAS 9.2, then you would be better off NOT using the REPLACE statement and using the STYLE or CLASS form of syntax.
cynthia
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.