Hi.
(Carried over from a different topic.)
I use "proc tamplate" like this:
proc template;
define style Appendix2;
parent = styles.rtf;
.
.
replace headersandfooters from cell;
replace color_list /
'bgA1' = cx999999;
replace colors /
'tableborder' = color_list('bgA1');
.
.
.
style SystemFooter from Titlesandfooters /
just = L;
end;
run;
got this warning: WARNING: Could not locate style reference 'Appendix2.colors("notefg")'.
WARNING: Could not locate style reference 'Appendix2.colors("notebg")'.
WARNING: Could not locate style reference 'Appendix2.colors("bylinefg")'.
etc
to get rid of the warning i could put this in the code:
replace colors /
'tableborder' = color_list('bgA1')
'notefg' = color_list('bgA1')
'notebg' = color_list('bgA1')
'bylinefg' = color_list('bgA1')
.
.
'link1' = color_list('bgA1')
'contentfg' = color_list('bgA1')
'contentbg' = color_list('bgA1');
is it becouse i have to define color for any style, is it not predefine?
BR
Jan
Jan
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.