I want to highlight Weight column in excel output.
/*SAS code*/
ods tagsets.excelxp file="bylines.xls" style=statistical
options( suppress_bylines='yes' sheet_interval='none' );
proc report data=class nowd;
column name age sex height weight ;
define name / display;
define age / display;
define sex / order;
define height / sum;
define weight / sum;
compute age;
if age < 13 then call define(_col_,"style","style={background=red}");
endcomp;
compute weight;
if weight < height then call define(_col_,"style","style={background=blue}");
endcomp;
run;
ods _all_ close;
Thanks.
Since weight and height has ANALYSIS usage, you should use .sum to refer to them. compute weight; if weight.sum < height.sum then call define(_col_,"style","style={background=blue}"); endcomp;
It works.
Thanks
kesete
Since weight and height has ANALYSIS usage, you should use .sum to refer to them. compute weight; if weight.sum < height.sum then call define(_col_,"style","style={background=blue}"); endcomp;
It works,
Thanks,
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.