使用交替背景色与过程报告
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用交替背景色与过程报告相关的知识,希望对你有一定的参考价值。
Adding alternating row of color to make proc report output easier to read.
proc report data=sashelp.prdsale; where region = "®ION." and Country = "&COUNTRY"; column Country Region Division ProdType Product Year Quarter Predict Actual; define Predict / analysis mean 'Predicted Sales (Avg)'; define Actual / analysis mean 'Actual Sales (Avg)'; /* begin row alternating code */ compute Country; count+1; if (mod(count,2)) then do; "STYLE=[BACKGROUND=#EEE8DC /* FOREGROUND=WHITE */ FONT_Weight=BOLD]"); end; endcomp; run;
以上是关于使用交替背景色与过程报告的主要内容,如果未能解决你的问题,请参考以下文章