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 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 5 replies
  • 1906 views
  • 2 likes
  • 3 in conversation