使用交替背景色与过程报告

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用交替背景色与过程报告相关的知识,希望对你有一定的参考价值。

Adding alternating row of color to make proc report output easier to read.
  1. proc report data=sashelp.prdsale;
  2. where region = "&REGION." and Country = "&COUNTRY";
  3. column Country Region Division ProdType Product Year Quarter Predict Actual;
  4. define Predict / analysis mean 'Predicted Sales (Avg)';
  5. define Actual / analysis mean 'Actual Sales (Avg)';
  6. /* begin row alternating code */
  7. compute Country;
  8. count+1;
  9. if (mod(count,2)) then do;
  10. "STYLE=[BACKGROUND=#EEE8DC /* FOREGROUND=WHITE */
  11. FONT_Weight=BOLD]");
  12. end;
  13. endcomp;
  14. run;

以上是关于使用交替背景色与过程报告的主要内容,如果未能解决你的问题,请参考以下文章

idea关于mybatis去除黄色背景色与绿色背景

CSS 表格行背景色与表格背景色

背景色与WM_ERASEBKGND

UISegmentedControl去掉背景色与UIScrollView联动

使用 2 个数据库交替加载和报告

Python:如何使用plotly制作阴影区域或交替背景颜色?