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

Hello!

I am trying to put horizontal lines between subject identifiers in a RTF output and the following comes close:

compute before subjid / style={bordertopcolor=black bordertopwidth=3};

     line '';

endcomp;

However, I want a solution that does not create an extra blank line inserted as this creates too much white space.  Thanks in advance.

1 ACCEPTED SOLUTION

Accepted Solutions
Cynthia_sas
Diamond | Level 26

Hi:

  Without seeing all your code or the style that you are using, it is hard to guess what the rest of your code looks like. But do you want something like the cyan-colored lines in the attached screenshot?

  If so, instead of doing a COMPUTE before, try just using a COMPUTE for SUBJID with a CALL DEFINE statement to change the _ROW_ style attributes, as shown in the test code below.

cynthia

ods listing close;
options center orientation=portrait nodate nonumber
        topmargin=1in bottommargin=1in
        rightmargin=1in leftmargin=1in;

data test;
  set sashelp.class;
  subjid=catt(sex,age);
run;
title; footnote;
   
ods rtf file='c:\temp\bordertest.rtf' style=journal;
proc report data=test nowd;
  column subjid name height weight;
  define subjid / group ;
  define name / order;
  define height / sum;
  define weight / sum;
  compute subjid ;
       if subjid gt ' ' then
       call define(_row_,'style',
                  'style={bordertopcolor=cyan bordertopwidth=3}');
  endcomp;
run;
ods rtf close;


border_test.png

View solution in original post

2 REPLIES 2
Cynthia_sas
Diamond | Level 26

Hi:

  Without seeing all your code or the style that you are using, it is hard to guess what the rest of your code looks like. But do you want something like the cyan-colored lines in the attached screenshot?

  If so, instead of doing a COMPUTE before, try just using a COMPUTE for SUBJID with a CALL DEFINE statement to change the _ROW_ style attributes, as shown in the test code below.

cynthia

ods listing close;
options center orientation=portrait nodate nonumber
        topmargin=1in bottommargin=1in
        rightmargin=1in leftmargin=1in;

data test;
  set sashelp.class;
  subjid=catt(sex,age);
run;
title; footnote;
   
ods rtf file='c:\temp\bordertest.rtf' style=journal;
proc report data=test nowd;
  column subjid name height weight;
  define subjid / group ;
  define name / order;
  define height / sum;
  define weight / sum;
  compute subjid ;
       if subjid gt ' ' then
       call define(_row_,'style',
                  'style={bordertopcolor=cyan bordertopwidth=3}');
  endcomp;
run;
ods rtf close;


border_test.png
asumsie
Obsidian | Level 7

Great, thanks Cynthia.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 2 replies
  • 7038 views
  • 0 likes
  • 2 in conversation