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
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.