🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 05-04-2018 09:39 PM
(3348 views)
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
To which ODS destination ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Report format is fine I think. My end result, I want to be able to export as pdf
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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