Hello
I am using proc report
I want that top header "ID info" and top header "measurement info" will be in yellow background color with big font size.
I want that low header "x" "w" "y" will be with blue background color with small font size.
Can anyone help ?
data tbl;
input x w y;
cards;
1 2 3
4 5 6
7 8 9
;
run;
proc report data=tbl nowd headline headskip
STYLE(Header)={background=lightblue foreground=black }
STYLE(column)={background=lightgray foreground=black}
STYLE(report)=[rules=rows bordercolor=black];
/*Title 'גליון 1';*/
column ("ID info" x w) ("measurement info" y) ;
define x / display ;
define w / display ;
define y / display ;
run;