BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
morglum
Quartz | Level 8

Here's my minimal working example.  Obviously, I'm looking for a black bottom border.

 

 


ods escapechar = '^';
ods listing close;
ods rtf file='c:\temp\usestyle1.rtf' style=minimal;

proc report data=sashelp.class nowd
style(report)=
[
frame=hsides
rules=groups
cellspacing=0];

column
('^S={just=l borderbottomcolor=purple} Purple bottom border ' age name )
('^S={just=l borderbottomcolor=black} MISSING black border' height weight);

define age / order style(header)={cellwidth=1.25in} 'Laboratory Test';
define name / display style(header)={cellwidth=1.25in} 'The Name';
define height / display style(header)={just=c cellwidth=1.25in} 'height';
define weight / display style(header)={just=c cellwidth=1.25in} 'weight';
run;
ods _all_ close;

 

1 ACCEPTED SOLUTION
5 REPLIES 5
ballardw
Super User

Does this do what you want?

style(report)=
 [ 
 frame=hsides 
 rules=groups
 cellspacing=0 borderbottomcolor=black];
morglum
Quartz | Level 8

Hi Ballardw,

Thanks for replying - didnt work for me!

S.

 

morglum
Quartz | Level 8

Burn him at the stake!

 

I mean... thanks!!

 

Seriously though, what the hell is darkblack..

 

 

data_null__
Jade | Level 19
I hear ya!

It is the color that shows up when BLACK doesn't. 🙂

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 5 replies
  • 1645 views
  • 2 likes
  • 3 in conversation