BookmarkSubscribeRSS Feed
mick_g
Calcite | Level 5

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

2 REPLIES 2
Tim_SAS
Barite | Level 11

Should 'titlebg' be "#5A5D62"? That is, shouldn't the hex digits be preceded with a #, like "titlefb"?

Cynthia_sas
Diamond | Level 26

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

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1177 views
  • 0 likes
  • 3 in conversation