I have a table of data that I"m trying to output, but I want itwith the text formatted. I want the text color to be red and I want the text to be 'strikethroughed'. how would I go about doing this?
proc sql;
select
year
from table 1;
quit;
Are you just looking for something like:
ods pdf file="/folders/myfolders/underline.pdf";
proc report data=sashelp.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;
call define(_col_,"style","style={color=red textdecoration=line_through}");
endcomp;
run;
ods pdf close;
Art, CEO, AnalystFinder.com
Are you just looking for something like:
ods pdf file="/folders/myfolders/underline.pdf";
proc report data=sashelp.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;
call define(_col_,"style","style={color=red textdecoration=line_through}");
endcomp;
run;
ods pdf close;
Art, CEO, AnalystFinder.com
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.