SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
mrdlau
Obsidian | Level 7

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;
1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

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;

st.png

 

Art, CEO, AnalystFinder.com

 

View solution in original post

3 REPLIES 3
ChrisNZ
Tourmaline | Level 20
mrdlau
Obsidian | Level 7
Report format is fine I think. My end result, I want to be able to export as pdf
art297
Opal | Level 21

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;

st.png

 

Art, CEO, AnalystFinder.com

 

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 3617 views
  • 1 like
  • 3 in conversation