Hi, ODS excel file= "~/YOURS.xlsx" ; proc report data=DB.TABLE nowd ; column name VALUE; define CITY/ "" display style={cellwidth=3.0in}; define POPULATION/ "" display style={cellwidth=3.0in}; compute CITY; if age LESS 50000 then call define(_row_,"Style","Style={background=BLUE}"); end comp; run;
... View more