I want to turn the entire row red for people whose names begin with ‘J’. Is this possible using proc print?
ods html file=odsout style=htmlblue ;
proc print data=sashelp.class noobs label;
var name age;
run;
ods html close;
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I don’t believe it’s possible with PROC PRINT. PROC REPORT can generate the identical output but with the rows red, however.
Identical:
With red:
I would consider it somewhat cleaner to use a style definition of course but for a one-off sort of thing this is easy.